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

Cleanup of deprecated data API

Location:
applications/editors/josm/plugins/measurement
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/measurement/build.xml

    r16801 r17377  
    2525                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    2626                <attribute name="Plugin-Description" value="Provide a measurement dialog and a layer to measure length and angle of segments, area surrounded by a (simple) closed way and create measurement paths (which also can be imported from a gps layer)."/>
    27                 <attribute name="Plugin-Mainversion" value="1893"/>
     27                <attribute name="Plugin-Mainversion" value="2012"/>
    2828                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    2929            </manifest>
  • 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.