Changeset 357 in josm for trunk/src/org/openstreetmap/josm/data/osm
- Timestamp:
- 2007-10-10T00:10:27+02:00 (18 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/osm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/Way.java
r343 r357 63 63 return o instanceof Way ? Long.valueOf(id).compareTo(o.id) : -1; 64 64 } 65 65 66 66 @Deprecated 67 67 public boolean isIncomplete() { 68 return false;68 return incomplete; 69 69 } 70 70 } -
trunk/src/org/openstreetmap/josm/data/osm/visitor/SimplePaintVisitor.java
r343 r357 93 93 */ 94 94 public void visit(Node n) { 95 if (n.incomplete) return; 96 95 97 Color color = null; 96 98 if (inactive) … … 108 110 */ 109 111 public void visit(Way w) { 112 if (w.incomplete) return; 113 110 114 Color wayColor; 111 115 if (inactive)
Note:
See TracChangeset
for help on using the changeset viewer.