Changeset 4303
- Timestamp:
- 05/21/08 16:48:41 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/trunk/src/api/org/openmrs/order/DrugOrderSupport.java
r4150 r4303 48 48 public static DrugOrderSupport getInstance() { 49 49 synchronized (DrugOrderSupport.class) { 50 if (singleton == null) 50 if (singleton == null) { 51 51 singleton = new DrugOrderSupport(); 52 Context.getAdministrationService().addGlobalPropertyListener(singleton); 53 } 52 54 } 53 55 return singleton;