Ignore:
Timestamp:
2010-07-25T16:00:01+02:00 (14 years ago)
Author:
jttt
Message:

Fix warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/conflict/tags/PasteTagsConflictResolverDialog.java

    r3083 r3385  
    175175        StatisticsInfo info = new StatisticsInfo();
    176176        info.numTags = tagsForAllPrimitives.getKeys().size();
    177         for (OsmPrimitiveType type: sourceStatistics.keySet()) {
    178             info.sourceInfo.put(type, sourceStatistics.get(type));
    179         }
    180         for (OsmPrimitiveType type: targetStatistics.keySet()) {
    181             info.targetInfo.put(type, targetStatistics.get(type));
    182         }
     177        info.sourceInfo.putAll(sourceStatistics);
     178        info.targetInfo.putAll(targetStatistics);
    183179        statisticsModel.append(info);
    184180        validate();
Note: See TracChangeset for help on using the changeset viewer.