Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
05/21/08 20:34:11 (8 months ago)
Author:
bwolfe
Message:

api-refactoring: Updating javadoc comments

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs/branches/api_refactoring/src/api/org/openmrs/api/db/hibernate/HibernateConceptDAO.java

    r4290 r4312  
    532532        @SuppressWarnings("unchecked") 
    533533        public List<Concept> getConceptsWithDrugsInFormulary() { 
    534                 Query query = sessionFactory.getCurrentSession().createQuery("select distinct concept from Drug where retired = false"); 
     534                Query query = sessionFactory.getCurrentSession().createQuery("select distinct concept from Drug d where d.retired = false"); 
    535535                return query.list(); 
    536536        }