Ignore:
Timestamp:
2013-07-17T00:01:07+02:00 (11 years ago)
Author:
stoecker
Message:

see #8853 remove tabs, trailing spaces, windows line ends, strange characters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/imagery/Shape.java

    r5381 r6069  
    2121
    2222    private List<Coordinate> coords = new ArrayList<Coordinate>();
    23    
     23
    2424    public Shape(String asString, String separator) throws IllegalArgumentException {
    2525        CheckParameterUtil.ensureParameterNotNull(asString, "asString");
     
    4949        return coords;
    5050    }
    51    
     51
    5252    public boolean contains(LatLon latlon) {
    5353        if (latlon == null)
     
    6565
    6666        double lat, lon;
    67        
     67
    6868        try {
    6969            lat = Double.parseDouble(sLat);
     
    8181            throw new IllegalArgumentException(MessageFormat.format("Illegal double value ''{0}''", sLon));
    8282        }
    83        
     83
    8484        coords.add(new Coordinate(LatLon.roundToOsmPrecision(lat), LatLon.roundToOsmPrecision(lon)));
    8585    }
Note: See TracChangeset for help on using the changeset viewer.