Ignore:
Timestamp:
2015-06-27T21:43:35+02:00 (11 years ago)
Author:
Don-vip
Message:

fix remaining checkstyle issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/gui/dialogs/LatLonDialogTest.java

    r8509 r8540  
    3636    @Test
    3737    public void test6() throws Exception {
    38         assertThat(LatLonDialog.parseLatLon("N 49°29'04\" E 19°24'43\""), is(new LatLon(49 + 29. / 60 + 04. / 3600, 19 + 24. / 60 + 43. / 3600)));
     38        assertThat(LatLonDialog.parseLatLon("N 49°29'04\" E 19°24'43\""),
     39                is(new LatLon(49 + 29. / 60 + 04. / 3600, 19 + 24. / 60 + 43. / 3600)));
    3940    }
    4041
     
    4647    @Test
    4748    public void test8() throws Exception {
    48         assertThat(LatLonDialog.parseLatLon("49°29'21\" N 19°24'38\" E"), is(new LatLon(49 + 29. / 60 + 21. / 3600, 19 + 24. / 60 + 38. / 3600)));
     49        assertThat(LatLonDialog.parseLatLon("49°29'21\" N 19°24'38\" E"),
     50                is(new LatLon(49 + 29. / 60 + 21. / 3600, 19 + 24. / 60 + 38. / 3600)));
    4951    }
    5052
Note: See TracChangeset for help on using the changeset viewer.