Ignore:
Timestamp:
2009-08-03T21:18:50+02:00 (15 years ago)
Author:
jttt
Message:

Way refactoring - rewritten another parts of code to the new nodes api

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/OsmDataLayer.java

    r1894 r1898  
    6565import org.openstreetmap.josm.tools.ImageProvider;
    6666
    67 import sun.security.action.GetLongAction;
    68 
    6967/**
    7068 * A layer holding data from a specific dataset.
     
    321319     * Cleanup the layer after save to disk. Just marks the layer as unmodified.
    322320     * Leaves the undo/redo stack unchanged.
    323      * 
     321     *
    324322     */
    325323    public void cleanupAfterSaveToDisk() {
     
    470468
    471469            ArrayList<WayPoint> trkseg = null;
    472             for (Node n : w.nodes) {
     470            for (Node n : w.getNodes()) {
    473471                if (n.incomplete || n.deleted) {
    474472                    trkseg = null;
Note: See TracChangeset for help on using the changeset viewer.