Ignore:
Timestamp:
2019-02-12T13:18:12+01:00 (6 years ago)
Author:
donvip
Message:

remove dead and invalid code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/OSMRecPlugin/src/org/openstreetmap/josm/plugins/osmrec/container/OSMWay.java

    r32404 r34888  
    1010import java.util.TreeMap;
    1111
    12 import com.vividsolutions.jts.geom.Coordinate;
    1312import com.vividsolutions.jts.geom.Geometry;
    1413
     
    2827    private final List<String> nodeReferences = new ArrayList<>(); //node references  //made final
    2928    private final List<Geometry> nodeGeometries = new ArrayList<>(); //nodeGeometries   //made final
    30     private Coordinate[] coordinateList;
    3129    private Map<String, String> tags = new HashMap<>();
    3230    private Geometry geometry;
     
    4543    public List<Geometry> getNodeGeometries() {
    4644        return nodeGeometries;
    47     }
    48 
    49     public Coordinate[] getCoordinateList() {
    50         coordinateList = nodeGeometries.toArray(new Coordinate[0]);
    51         return coordinateList;
    5245    }
    5346
Note: See TracChangeset for help on using the changeset viewer.