Changeset 8338 in josm for trunk/src/org/openstreetmap/josm/command
- Timestamp:
- 2015-05-07T01:27:41+02:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/command
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/ChangePropertyCommand.java
r7005 r8338 6 6 import static org.openstreetmap.josm.tools.I18n.trn; 7 7 8 import java.util.AbstractMap;9 8 import java.util.ArrayList; 10 9 import java.util.Arrays; … … 40 39 * those objects that do not have the key yet. 41 40 */ 42 private final AbstractMap<String, String> tags;41 private final Map<String, String> tags; 43 42 44 43 /** … … 48 47 * @param tags the tags to set 49 48 */ 50 public ChangePropertyCommand(Collection<? extends OsmPrimitive> objects, AbstractMap<String, String> tags) {49 public ChangePropertyCommand(Collection<? extends OsmPrimitive> objects, Map<String, String> tags) { 51 50 this.objects = new LinkedList<>(); 52 51 this.tags = tags; -
trunk/src/org/openstreetmap/josm/command/PurgeCommand.java
r7005 r8338 201 201 List<Relation> outR = new ArrayList<>(inR.size()); 202 202 203 HashMap<Relation, Integer> numChilds = new HashMap<>();203 Map<Relation, Integer> numChilds = new HashMap<>(); 204 204 205 205 // calculate initial number of childs
Note:
See TracChangeset
for help on using the changeset viewer.