- Timestamp:
- 2015-12-14T22:22:18+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/Preferences.java
r9119 r9120 1820 1820 // update old style JOSM server links to use zip now, see #10581, #12189 1821 1821 // actually also cache and mirror entries should be cleared 1822 if (getInteger("josm.version", Version.getInstance().getVersion()) < 91 19) {1822 if (getInteger("josm.version", Version.getInstance().getVersion()) < 9120) { 1823 1823 for (String key: new String[]{"mappaint.style.entries", "taggingpreset.entries"}) { 1824 1824 Collection<Map<String, String>> data = getListOfStructs(key, (Collection<Map<String, String>>) null); … … 1834 1834 val += "&zip=1"; 1835 1835 modified = true; 1836 1836 } 1837 if ("url".equals(mkey) && val.contains("http://josm.openstreetmap.de/josmfile")) { 1838 val = val.replace("http://", "https://"); 1839 modified = true; 1837 1840 } 1838 1841 newmap.put(mkey, val);
Note:
See TracChangeset
for help on using the changeset viewer.