Changeset 5183 for openmrs/branches/data_synchronization_bidirectional/src/api/org/openmrs/util/OpenmrsUtil.java
- Timestamp:
- 08/06/08 17:17:55 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/branches/data_synchronization_bidirectional/src/api/org/openmrs/util/OpenmrsUtil.java
r4969 r5183 81 81 import org.openmrs.api.AdministrationService; 82 82 import org.openmrs.api.ConceptService; 83 import org.openmrs.api.PatientIdentifierException;84 83 import org.openmrs.api.PatientService; 85 84 import org.openmrs.api.context.Context; … … 889 888 } 890 889 else { 891 if (OpenmrsConstants.OPERATING_SYSTEM_LINUX.equalsIgnoreCase(OpenmrsConstants.OPERATING_SYSTEM) || 892 OpenmrsConstants.OPERATING_SYSTEM_FREEBSD.equalsIgnoreCase(OpenmrsConstants.OPERATING_SYSTEM) || 893 OpenmrsConstants.OPERATING_SYSTEM_MAC_OSX.equalsIgnoreCase(OpenmrsConstants.OPERATING_SYSTEM)) 890 if (OpenmrsConstants.UNIX_BASED_OPERATING_SYSTEM) 894 891 filepath = System.getProperty("user.home") + File.separator + ".OpenMRS"; 895 892 else