Changeset 30910 in osm for applications
- Timestamp:
- 2015-01-11T21:59:32+01:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/opendata
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/modules
-
Property svn:ignore
set to
build
-
Property svn:ignore
set to
-
applications/editors/josm/plugins/opendata/util/opendata/ModuleListGenerator.java
r30738 r30910 14 14 import java.util.zip.ZipEntry; 15 15 import java.util.zip.ZipOutputStream; 16 17 import org.openstreetmap.josm.Main;18 16 19 17 public class ModuleListGenerator { … … 40 38 try { 41 39 String filename = file.getName(); 42 Main.info("Processing "+filename);40 System.out.println("Processing "+filename); 43 41 list.write(filename+";"+url+filename); list.newLine(); 44 42 Manifest mf = new JarFile(file).getManifest(); … … 80 78 } 81 79 } catch (IOException e) { 82 Main.error("Cannot load Image-Icon: "+value.toString());80 System.err.println("Cannot load Image-Icon: "+value.toString()); 83 81 } finally { 84 82 zip.closeEntry(); … … 87 85 } 88 86 } 89 87 90 88 } catch (IOException e) { 91 Main.error(e);89 e.printStackTrace(); 92 90 } 93 91 } 94 92 } catch (IOException e) { 95 Main.error(e);93 e.printStackTrace(); 96 94 } 97 95 }
Note:
See TracChangeset
for help on using the changeset viewer.