Changeset 6084 in josm for trunk/src/org/openstreetmap/josm/command
- Timestamp:
- 2013-07-26T13:38:17+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/Command.java
r6009 r6084 41 41 public final Map<OsmPrimitive, PrimitiveData> orig = new LinkedHashMap<OsmPrimitive, PrimitiveData>(); 42 42 43 @Override 43 44 public void visit(Node n) { 44 45 orig.put(n, n.save()); 45 46 } 47 @Override 46 48 public void visit(Way w) { 47 49 orig.put(w, w.save()); 48 50 } 51 @Override 49 52 public void visit(Relation e) { 50 53 orig.put(e, e.save());
Note:
See TracChangeset
for help on using the changeset viewer.