Ignore:
Timestamp:
2015-10-08T00:22:36+02:00 (9 years ago)
Author:
Don-vip
Message:

fix Checkstyle issues

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

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJobTest.java

    r8624 r8836  
    1717        private String url;
    1818
    19         public TestCachedTileLoaderJob(String url) throws IOException {
     19        TestCachedTileLoaderJob(String url) throws IOException {
    2020            super(getCache(), 30000, 30000, null);
    2121            this.url = url;
  • trunk/test/unit/org/openstreetmap/josm/data/imagery/WMTSTileSourceTest.java

    r8752 r8836  
    229229        LatLon expected = new LatLon(verifier.tileXYToLatLon(x, y, z + zoomOffset));
    230230        //System.out.println(z + "/" + x + "/" + y + " - result: " + result.toDisplayString() + " osmMercator: " +  expected.toDisplayString());
    231         assertEquals("Longitude" , expected.lon(), result.lon(), 1e-04);
     231        assertEquals("Longitude", expected.lon(), result.lon(), 1e-04);
    232232        assertEquals("Latitude", expected.lat(), result.lat(), 1e-04);
    233233    }
  • trunk/test/unit/org/openstreetmap/josm/data/projection/SwissGridTest.java

    r8540 r8836  
    4747        public EastNorth en;
    4848
    49         public ProjData(String name, double lon, double lat, double h1, double x, double y, double h2) {
     49        ProjData(String name, double lon, double lat, double h1, double x, double y, double h2) {
    5050            this.name = name;
    5151            ll = new LatLon(lat, lon);
Note: See TracChangeset for help on using the changeset viewer.