Changeset 13311 in josm for trunk/src/org
- Timestamp:
- 2018-01-13T01:48:26+01:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/ImageProvider.java
r13252 r13311 1225 1225 } 1226 1226 1227 /** Quit parsing, when a certain condition is met */1228 private static class SAXReturnException extends SAXException {1229 private final String result;1230 1231 SAXReturnException(String result) {1232 this.result = result;1233 }1234 1235 public String getResult() {1236 return result;1237 }1238 }1239 1240 1227 /** 1241 1228 * Reads the wiki page on a certain file in html format in order to find the real image URL.
Note:
See TracChangeset
for help on using the changeset viewer.