Changeset 33124 in osm for applications/editors/josm/plugins/utilsplugin2/src
- Timestamp:
- 2017-01-25T01:30:14+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/customurl/URLList.java
r32725 r33124 88 88 try { 89 89 f.getParentFile().mkdirs(); 90 fw = new PrintWriter(f );90 fw = new PrintWriter(f, "UTF-8"); 91 91 for (String s : items) { 92 92 fw.println(s); 93 93 } 94 94 } catch (IOException e) { 95 e.printStackTrace();95 Main.error(e); 96 96 } finally { 97 97 try {
Note:
See TracChangeset
for help on using the changeset viewer.