Ignore:
Timestamp:
2015-06-20T14:36:00+02:00 (10 years ago)
Author:
Don-vip
Message:

fix many checkstyle violations

Location:
trunk/test/unit/org/openstreetmap/josm/actions
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/actions/CopyActionTest.java

    r8194 r8509  
     1// License: GPL. For details, see LICENSE file.
    12package org.openstreetmap.josm.actions;
     3
     4import static org.hamcrest.CoreMatchers.is;
     5import static org.junit.Assert.assertThat;
     6
     7import java.util.Arrays;
     8import java.util.Collections;
    29
    310import org.junit.BeforeClass;
     
    613import org.openstreetmap.josm.data.osm.Relation;
    714import org.openstreetmap.josm.data.osm.Way;
    8 
    9 import java.util.Arrays;
    10 import java.util.Collections;
    11 
    12 import static org.hamcrest.CoreMatchers.is;
    13 import static org.junit.Assert.*;
    1415
    1516public class CopyActionTest {
  • trunk/test/unit/org/openstreetmap/josm/actions/mapmode/SelectActionTest.java

    r8450 r8509  
    2020import org.openstreetmap.josm.JOSMFixture;
    2121import org.openstreetmap.josm.Main;
    22 import org.openstreetmap.josm.corrector.UserCancelException;
    2322import org.openstreetmap.josm.data.Preferences;
    2423import org.openstreetmap.josm.data.coor.EastNorth;
     
    131130    /**
    132131     * Setup test.
    133      * @throws UserCancelException
    134132     */
    135133    @BeforeClass
    136     public static void setUp() throws UserCancelException {
     134    public static void setUp() {
    137135        JOSMFixture.createUnitTestFixture().init(true);
    138136    }
  • trunk/test/unit/org/openstreetmap/josm/actions/search/SearchCompilerTest.java

    r8250 r8509  
     1// License: GPL. For details, see LICENSE file.
    12package org.openstreetmap.josm.actions.search;
    23
Note: See TracChangeset for help on using the changeset viewer.