Changeset 1762 in josm for trunk/src/org/openstreetmap/josm/data/osm/Way.java
- Timestamp:
- 11.07.2009 09:32:42 (3 years ago)
- File:
-
- 1 edited
-
trunk/src/org/openstreetmap/josm/data/osm/Way.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/Way.java
r1690 r1762 99 99 if (incomplete) return "{Way id="+id+" version="+version+" (incomplete)}"; 100 100 return "{Way id="+id+" version="+version+" nodes="+Arrays.toString(nodes.toArray())+"}"; 101 }102 103 @Deprecated104 @Override public boolean realEqual(OsmPrimitive osm, boolean semanticOnly) {105 return osm instanceof Way ? super.realEqual(osm, semanticOnly) && nodes.equals(((Way)osm).nodes) : false;106 101 } 107 102
Note: See TracChangeset
for help on using the changeset viewer.
