Changeset 307 in josm
- Timestamp:
- 2007-08-22T20:48:47+02:00 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/command/MoveCommand.java
r298 r307 7 7 import java.util.Arrays; 8 8 import java.util.Collection; 9 import java.util.Collections; 9 10 import java.util.Iterator; 10 11 import java.util.LinkedList; … … 60 61 61 62 public MoveCommand(OsmPrimitive osm, double x, double y) { 62 this( Arrays.asList(new OsmPrimitive[]{osm}), x, y);63 this(Collections.singleton(osm), x, y); 63 64 } 64 65 /**
Note:
See TracChangeset
for help on using the changeset viewer.