Ignore:
Timestamp:
2016-08-06T00:52:15+02:00 (8 years ago)
Author:
donvip
Message:

checkstyle

Location:
applications/editors/josm/plugins/ElevationProfile/test/unit/org/openstreetmap/josm/plugins/elevation/tests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/ElevationProfile/test/unit/org/openstreetmap/josm/plugins/elevation/tests/EleVertexTest.java

    r30578 r32775  
    44import java.awt.Color;
    55import java.util.List;
    6 
    7 import junit.framework.TestCase;
    86
    97import org.openstreetmap.josm.Main;
     
    1311import org.openstreetmap.josm.plugins.elevation.grid.EleCoordinate;
    1412import org.openstreetmap.josm.plugins.elevation.grid.EleVertex;
     13
     14import junit.framework.TestCase;
    1515
    1616public class EleVertexTest extends TestCase {
     
    6262
    6363    private void recurse(EleVertex v, int depth) {
    64         if (!v.isFinished() && depth <100) {
     64        if (!v.isFinished() && depth < 100) {
    6565            System.out.println("\tDivide: " + v);
    6666            List<EleVertex> list = v.divide();
     
    9090
    9191    public void testColorMap() {
    92         ColorMap testMap  = ColorMap.create("Test", new Color[]{Color.white, Color.black}, new int[]{0, 1000});
     92        ColorMap testMap = ColorMap.create("Test", new Color[]{Color.white, Color.black}, new int[]{0, 1000});
    9393
    9494        // range test
  • applications/editors/josm/plugins/ElevationProfile/test/unit/org/openstreetmap/josm/plugins/elevation/tests/HgtReaderTest.java

    r32351 r32775  
    6767        assertFalse("Data missing or void for coor " + l, Double.isNaN(d));
    6868
    69         assertEquals((int)d, expHeight);
     69        assertEquals((int) d, expHeight);
    7070    }
    7171}
Note: See TracChangeset for help on using the changeset viewer.