- Timestamp:
- 05/20/08 17:00:47 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs-modules/dss/src/org/openmrs/module/dss/CompilingClassLoader.java
r4214 r4278 60 60 String property = adminService 61 61 .getGlobalProperty("dss.classRuleDirectory"); 62 String classDirectory = Util.processFileDirectory(property);62 String classDirectory = IOUtil.formatDirectoryName(property); 63 63 64 64 String classpath = getClasspath(); … … 159 159 String property = adminService.getGlobalProperty("dss.javaRuleDirectory"); 160 160 161 String javaRuleDirectory = Util.processFileDirectory(property);161 String javaRuleDirectory = IOUtil.formatDirectoryName(property); 162 162 163 163 int errorCode = -1; … … 185 185 186 186 String property = adminService.getGlobalProperty("dss.rulePackagePrefix"); 187 String rulePackagePrefix = Util. processPackagePrefix(property);187 String rulePackagePrefix = Util.formatPackagePrefix(property); 188 188 189 189 property = adminService.getGlobalProperty("dss.javaRuleDirectory"); 190 String javaRuleDirectory = Util.processFileDirectory(property);190 String javaRuleDirectory = IOUtil.formatDirectoryName(property); 191 191 192 192 property = adminService.getGlobalProperty("dss.classRuleDirectory"); 193 String classRulesDirectory = Util.processFileDirectory(property);193 String classRulesDirectory = IOUtil.formatDirectoryName(property); 194 194 195 195 property = adminService.getGlobalProperty("dss.archivedMLMRuleDirectory"); 196 String archivedMLMRuleDirectory = Util.processFileDirectory(property);196 String archivedMLMRuleDirectory = IOUtil.formatDirectoryName(property); 197 197 198 198 property = adminService.getGlobalProperty("dss.archivedJavaRuleDirectory"); 199 String archivedJavaRuleDirectory = Util.processFileDirectory(property);199 String archivedJavaRuleDirectory = IOUtil.formatDirectoryName(property); 200 200 201 201 property = adminService.getGlobalProperty("dss.mlmRuleDirectory"); 202 String mlmRuleDirectory = Util.processFileDirectory(property);202 String mlmRuleDirectory = IOUtil.formatDirectoryName(property); 203 203 204 204 boolean clearMLMFiles = Boolean.parseBoolean(