Changeset 4321
- Timestamp:
- May 29, 2008, 3:02:14 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/net/sf/basedb/util/JarClassLoader.java
r4195 r4321 67 67 { 68 68 69 private static final org.apache.log4j.Logger log = 70 org.apache.log4j.LogManager.getLogger("net.sf.basedb.util.JarClassLoader"); 71 69 72 /** 70 73 A map of all loaded class loaders. … … 265 268 throws IOException 266 269 { 270 if (!file.exists() || !file.isFile()) 271 { 272 log.warn("File not found: " + file); 273 return; 274 } 267 275 JarFile jarFile = new JarFile(file); 268 276 Enumeration<JarEntry> entries = jarFile.entries();
Note: See TracChangeset
for help on using the changeset viewer.