Changeset 12545
- Timestamp:
- 03/15/10 13:57:06 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.19.x/abcl/src/org/armedbear/lisp/Pathname.java
r12533 r12545 526 526 String directoryNamestring = getDirectoryNamestring(); 527 527 if (isJar()) { 528 if (directoryNamestring.startsWith( File.separator)) {528 if (directoryNamestring.startsWith("/")) { 529 529 sb.append(directoryNamestring.substring(1)); 530 } else { 531 sb.append(directoryNamestring); 530 532 } 531 533 } else { … … 644 646 } 645 647 } 646 return result.toString();647 648 } else { 648 649 result.append(path);
Note: See TracChangeset
for help on using the changeset viewer.