Changeset 382
- Timestamp:
- Jun 7, 2012, 4:34:14 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/icedtea-web/netx/net/sourceforge/jnlp/cache/CacheUtil.java
r380 r382 447 447 StringBuffer path = new StringBuffer(); 448 448 449 path.append(subdir);450 path.append(File.separatorChar);451 452 449 path.append(location.getProtocol()); 453 450 path.append(File.separatorChar); … … 456 453 path.append(location.getPath().replace('/', File.separatorChar)); 457 454 458 return new File( FileUtils.sanitizePath(path.toString()));455 return new File(subdir + File.separatorChar + FileUtils.sanitizePath(path.toString())); 459 456 } 460 457
Note:
See TracChangeset
for help on using the changeset viewer.