Changeset 5946 in josm
- Timestamp:
- 2013-05-08T13:27:43+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/ImageProvider.java
r5874 r5946 599 599 try { 600 600 File f = new File(path, name); 601 if ( f.exists())601 if ((path != null || f.isAbsolute()) && f.exists()) 602 602 return f.toURI().toURL(); 603 603 } catch (MalformedURLException e) {
Note:
See TracChangeset
for help on using the changeset viewer.