Ignore:
Timestamp:
2016-09-03T02:33:09+02:00 (8 years ago)
Author:
donvip
Message:

remove reference to JAXBException, not visible by default with Java 9

File:
1 edited

Legend:

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

    r32360 r32901  
    44import java.io.File;
    55import java.io.FileInputStream;
    6 import java.io.IOException;
    76import java.io.InputStream;
    87import java.nio.file.Path;
    98import java.util.Map.Entry;
    10 
    11 import javax.xml.bind.JAXBException;
    12 import javax.xml.stream.FactoryConfigurationError;
    13 import javax.xml.stream.XMLStreamException;
    149
    1510import org.junit.Rule;
     
    3328    /**
    3429     * Test for various zip files reading
    35      * @throws IOException if an error occurs during reading
     30     * @throws Exception if an error occurs during reading
    3631     */
    3732    @Test
    38     public void testReadZipFiles() throws IOException, XMLStreamException, FactoryConfigurationError, JAXBException {
     33    public void testReadZipFiles() throws Exception {
    3934        for (Path p : NonRegFunctionalTests.listDataFiles("zip")) {
    4035            File zipfile = p.toFile();
Note: See TracChangeset for help on using the changeset viewer.