Changeset 15412
- Timestamp:
- 10/14/20 07:07:21 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/JarPathname.java
r15411 r15412 314 314 || getType() != NIL) { 315 315 316 Pathname withoutDevice = new Pathname(); 317 Pathname.ncoerce(this, withoutDevice); 318 withoutDevice.setDevice(NIL); 316 Pathname withoutDevice = new Pathname(); 317 withoutDevice 318 .copyFrom(this) 319 .setDevice(NIL); 319 320 320 321 String withoutDeviceNamestring = withoutDevice.getNamestring(); // need to URI encode?
Note: See TracChangeset
for help on using the changeset viewer.