Changeset 204 in josm
- Timestamp:
- 2007-04-02T12:46:04+02:00 (18 years ago)
- Location:
- src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/io/BoundingBoxDownloader.java
r189 r204 66 66 data.add(list); 67 67 return data; 68 } catch (IllegalArgumentException e) { 69 // caused by HttpUrlConnection in case of illegal stuff in the response 70 if (cancel) 71 return null; 72 throw e; 68 73 } catch (IOException e) { 69 74 if (cancel) -
src/org/openstreetmap/josm/tools/ImageProvider.java
r200 r204 77 77 } 78 78 if (path == null) 79 throw new NullPointerException("/images/"+subdir+name+ext+" not found");79 return null; 80 80 Image img = cache.get(path); 81 81 if (img == null) {
Note:
See TracChangeset
for help on using the changeset viewer.