Ignore:
Timestamp:
2020-10-07T19:44:51+02:00 (4 years ago)
Author:
simon04
Message:

Use Collection.addAll

File:
1 edited

Legend:

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

    r16968 r17093  
    280280    @Override
    281281    public void fillModifiedData(Collection<OsmPrimitive> modified, Collection<OsmPrimitive> deleted, Collection<OsmPrimitive> added) {
    282         for (OsmPrimitive osm : nodes) {
    283             modified.add(osm);
    284         }
     282        modified.addAll(nodes);
    285283    }
    286284
Note: See TracChangeset for help on using the changeset viewer.