Changeset 13445 in josm
- Timestamp:
- 2018-02-19T00:48:24+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainApplication.java
r13443 r13445 961 961 for (String i : args.get(Option.LOAD_PREFERENCES)) { 962 962 try { 963 URL url = i.contains(":/ /") ? new URL(i) : Paths.get(i).toUri().toURL();963 URL url = i.contains(":/") ? new URL(i) : Paths.get(i).toUri().toURL(); 964 964 Logging.info("Reading preferences from " + url); 965 965 try (InputStream is = Utils.openStream(url)) {
Note:
See TracChangeset
for help on using the changeset viewer.