Changeset 8777 in josm for trunk/src/org/openstreetmap/josm/command
- Timestamp:
- 2015-09-21T23:48:29+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/command
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/ChangePropertyKeyCommand.java
r8510 r8777 25 25 * All primitives, that are affected with this command. 26 26 */ 27 private final List< OsmPrimitive> objects;27 private final List<? extends OsmPrimitive> objects; 28 28 /** 29 29 * The key that is subject to change. -
trunk/src/org/openstreetmap/josm/command/DeleteCommand.java
r8540 r8777 369 369 return null; 370 370 371 Set<OsmPrimitive> primitivesToDelete = new HashSet< >(selection);371 Set<OsmPrimitive> primitivesToDelete = new HashSet<OsmPrimitive>(selection); 372 372 373 373 Collection<Relation> relationsToDelete = Utils.filteredCollection(primitivesToDelete, Relation.class);
Note: See TracChangeset
for help on using the changeset viewer.