Ignore:
Timestamp:
2009-08-30T18:16:10+02:00 (15 years ago)
Author:
guggis
Message:

Cleanup of deprecated data API

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/measurement/src/org/openstreetmap/josm/plugins/measurement/MeasurementDialog.java

    r16317 r17377  
    126126                                        Way w = (Way)p;
    127127                                        Node lastN = null;
    128                                         for(Node n: w.nodes){
     128                                        for(Node n: w.getNodes()){
    129129                                            if(lastN != null){
    130130                                                length += MeasurementLayer.calcDistance(lastN.getCoor(), n.getCoor());
     
    135135                                            lastN = n;
    136136                                        }
    137                                         if (lastN != null && lastN == w.nodes.iterator().next()){
     137                                        if (lastN != null && lastN == w.getNodes().iterator().next()){
    138138                                            area = Math.abs(area / 2);
    139139                                        }else{
Note: See TracChangeset for help on using the changeset viewer.