Changeset 15424
- Timestamp:
- 10/20/20 06:45:23 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/Pathname.java
r15414 r15424 1239 1239 p.validateDirectory(true); 1240 1240 1241 // ??? need to check for downcast to URLPathname as well?1242 1241 // Possibly downcast type to JarPathname 1243 1242 if (p.getDevice() instanceof Cons) { … … 1257 1256 return result; 1258 1257 } 1258 1259 // Possibly downcast to URLPathname 1260 if (p.isURL()) { 1261 URLPathname result = new URLPathname(); 1262 result.copyFrom(p); 1263 1264 return result; 1265 } 1266 1259 1267 return p; 1260 1268 }
Note: See TracChangeset
for help on using the changeset viewer.