- Timestamp:
- 2012-01-20T20:47:02+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/imagery/WmsCache.java
r4829 r4830 101 101 cPath = Main.pref.getCacheDirectory() + File.separator + cPath; 102 102 } 103 // Migrate to new cache directory. Remove 2012-06 104 { 105 File oldPath = new File(Main.pref.getPreferencesDirFile(), "wms-cache"); 106 File newPath = new File(cPath); 107 if (oldPath.exists() && !newPath.exists()) { 108 oldPath.renameTo(newPath); 109 } 110 } 103 111 return cPath; 104 112 }
Note:
See TracChangeset
for help on using the changeset viewer.