Changeset 965 in josm for trunk/src/org
- Timestamp:
- 2008-09-14T12:27:24+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/ChangePropertyCommand.java
r679 r965 6 6 7 7 import java.util.Collection; 8 import java.util.Collections;9 8 import java.util.LinkedList; 10 9 import java.util.List; … … 40 39 private final String value; 41 40 42 public ChangePropertyCommand(Collection<OsmPrimitive> objects, String key, String value) { 41 public ChangePropertyCommand(Collection<? extends OsmPrimitive> objects, String key, String value) { 43 42 this.objects = new LinkedList<OsmPrimitive>(); 44 43 this.key = key;
Note:
See TracChangeset
for help on using the changeset viewer.