Ignore:
Timestamp:
2017-08-25T22:50:43+02:00 (7 years ago)
Author:
donvip
Message:

update to JOSM 12649

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/test/unit/org/openstreetmap/josm/plugins/opendata/core/io/archive/ZipReaderTest.java

    r33156 r33518  
    1010import org.junit.Rule;
    1111import org.junit.Test;
    12 import org.openstreetmap.josm.Main;
    1312import org.openstreetmap.josm.data.osm.DataSet;
    1413import org.openstreetmap.josm.plugins.opendata.core.io.NonRegFunctionalTests;
    1514import org.openstreetmap.josm.testutils.JOSMTestRules;
     15import org.openstreetmap.josm.tools.Logging;
    1616
    1717/**
     
    3434        for (Path p : NonRegFunctionalTests.listDataFiles("zip")) {
    3535            File zipfile = p.toFile();
    36             Main.info("Testing reading file "+zipfile.getPath());
     36            Logging.info("Testing reading file "+zipfile.getPath());
    3737            try (InputStream is = new FileInputStream(zipfile)) {
    3838                for (Entry<File, DataSet> entry : ZipReader.parseDataSets(is, null, null, false).entrySet()) {
    3939                    String name = entry.getKey().getName();
    40                     Main.info("Checking dataset for entry "+name);
     40                    Logging.info("Checking dataset for entry "+name);
    4141                    NonRegFunctionalTests.testGeneric(zipfile.getName()+"/"+name, entry.getValue());
    4242                }
Note: See TracChangeset for help on using the changeset viewer.