Changeset 4117
- Timestamp:
- Feb 1, 2008, 10:36:56 AM (15 years ago)
- Location:
- trunk/src/core/net/sf/basedb/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/net/sf/basedb/core/Application.java
r4096 r4117 728 728 for (java.io.File xmlFile : xmlFiles) 729 729 { 730 String path = xmlFile.getAbsolutePath().replace(configDir, ""); 730 String path = xmlFile.getAbsolutePath().replace(configDir, ""). 731 replace(java.io.File.separatorChar, '/'); 731 732 files.add(path); 732 733 } … … 756 757 for (java.io.File xmlFile : xmlFiles) 757 758 { 758 String path = xmlFile.getAbsolutePath().replace(configDir, ""); 759 String path = xmlFile.getAbsolutePath().replace(configDir, ""). 760 replace(java.io.File.separatorChar, '/');; 759 761 files.add(path); 760 762 } -
trunk/src/core/net/sf/basedb/core/ExtendedProperties.java
r4096 r4117 121 121 for (String xmlFile : files) 122 122 { 123 log.debug("Loading extended properties from file: " + xmlFile); 123 124 Document dom = XMLUtil.getValidatedXml(ExtendedProperties.class.getResource(xmlFile), dtdFile); 124 125 loadClasses(usedNames, dom, xmlFile);
Note: See TracChangeset
for help on using the changeset viewer.