Changeset 16815 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2020-08-02T15:30:13+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/RenderingCLI.java
r16814 r16815 10 10 import java.io.IOException; 11 11 import java.nio.file.Files; 12 import java.nio.file.NoSuchFileException; 12 13 import java.nio.file.Paths; 13 14 import java.util.ArrayList; … … 165 166 BufferedImage image = rh.render(); 166 167 writeImageToFile(image); 167 } catch (FileNotFoundException e) {168 } catch (FileNotFoundException | NoSuchFileException e) { 168 169 if (Logging.isDebugEnabled()) { 169 170 e.printStackTrace();
Note:
See TracChangeset
for help on using the changeset viewer.