Changeset 30910 in osm


Ignore:
Timestamp:
2015-01-11T21:59:32+01:00 (10 years ago)
Author:
donvip
Message:

[josm_opendata] remove unneeded JOSM import

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
  • applications/editors/josm/plugins/opendata/util/opendata/ModuleListGenerator.java

    r30738 r30910  
    1414import java.util.zip.ZipEntry;
    1515import java.util.zip.ZipOutputStream;
    16 
    17 import org.openstreetmap.josm.Main;
    1816
    1917public class ModuleListGenerator {
     
    4038                                try {
    4139                                        String filename = file.getName();
    42                                         Main.info("Processing "+filename);
     40                                        System.out.println("Processing "+filename);
    4341                                        list.write(filename+";"+url+filename); list.newLine();
    4442                                        Manifest mf = new JarFile(file).getManifest();
     
    8078                                                                        }
    8179                                                                } catch (IOException e) {
    82                                                                         Main.error("Cannot load Image-Icon: "+value.toString());
     80                                                                        System.err.println("Cannot load Image-Icon: "+value.toString());
    8381                                                                } finally {
    8482                                                                        zip.closeEntry();
     
    8785                                                }
    8886                                        }
    89 
     87                                       
    9088                                } catch (IOException e) {
    91                                     Main.error(e);
     89                                        e.printStackTrace();
    9290                                }
    9391                        }
    9492                } catch (IOException e) {
    95                         Main.error(e);
     93                        e.printStackTrace();
    9694                }
    9795        }
Note: See TracChangeset for help on using the changeset viewer.