Ignore:
Timestamp:
2013-07-26T13:38:17+02:00 (11 years ago)
Author:
bastiK
Message:

see #8902 - add missing @Override annotations (patch by shinigami)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/command/Command.java

    r6009 r6084  
    4141        public final Map<OsmPrimitive, PrimitiveData> orig = new LinkedHashMap<OsmPrimitive, PrimitiveData>();
    4242
     43        @Override
    4344        public void visit(Node n) {
    4445            orig.put(n, n.save());
    4546        }
     47        @Override
    4648        public void visit(Way w) {
    4749            orig.put(w, w.save());
    4850        }
     51        @Override
    4952        public void visit(Relation e) {
    5053            orig.put(e, e.save());
Note: See TracChangeset for help on using the changeset viewer.