Ignore:
Timestamp:
2009-08-05T08:19:02+02:00 (15 years ago)
Author:
jttt
Message:

Way refactoring - finish replacing Way.nodes with the new api

File:
1 edited

Legend:

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

    r1898 r1910  
    289289                        continue;
    290290                if (alt) {
    291                     for (Node n : w.nodes) {
     291                    for (Node n : w.getNodes()) {
    292292                        if (!n.incomplete && r.contains(nc.getPoint(n))) {
    293293                            selection.add(w);
     
    297297                } else {
    298298                    boolean allIn = true;
    299                     for (Node n : w.nodes) {
     299                    for (Node n : w.getNodes()) {
    300300                        if (!n.incomplete && !r.contains(nc.getPoint(n))) {
    301301                            allIn = false;
Note: See TracChangeset for help on using the changeset viewer.