Changeset 12171 in josm for trunk/test/unit


Ignore:
Timestamp:
2017-05-15T17:55:56+02:00 (7 years ago)
Author:
michael2402
Message:

Fixed checkstyle warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/data/gpx/GpxDataTest.java

    r12169 r12171  
    4747
    4848    /**
    49      * @throws java.lang.Exception
     49     * Set up empty test data
    5050     */
    5151    @Before
    52     public void setUp() throws Exception {
     52    public void setUp() {
    5353        data = new GpxData();
    5454    }
     
    281281    @Test
    282282    public void testLength() {
    283         ImmutableGpxTrack track1 = waypointGpxTrack(new WayPoint(new LatLon(0, 0)), new WayPoint(new LatLon(1, 1)), new WayPoint(new LatLon(0, 2)));
    284         ImmutableGpxTrack track2 = waypointGpxTrack(new WayPoint(new LatLon(0, 0)), new WayPoint(new LatLon(-1, 1)));
     283        ImmutableGpxTrack track1 = waypointGpxTrack(
     284                new WayPoint(new LatLon(0, 0)),
     285                new WayPoint(new LatLon(1, 1)),
     286                new WayPoint(new LatLon(0, 2)));
     287        ImmutableGpxTrack track2 = waypointGpxTrack(
     288                new WayPoint(new LatLon(0, 0)),
     289                new WayPoint(new LatLon(-1, 1)));
    285290        data.addTrack(track1);
    286291        data.addTrack(track2);
Note: See TracChangeset for help on using the changeset viewer.