Changeset 31458 in osm for applications/editors
- Timestamp:
- 2015-08-05T16:31:36+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryImportedImage.java
r31457 r31458 69 69 */ 70 70 public BufferedImage getImage() throws IOException { 71 return ImageIO.read(this.file); 71 if (this.file != null) 72 return ImageIO.read(this.file); 73 return null; 72 74 } 73 75
Note:
See TracChangeset
for help on using the changeset viewer.