- Timestamp:
- 2006-07-06T12:52:11+02:00 (19 years ago)
- Location:
- src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/actions/mapmode/SelectionAction.java
r104 r105 94 94 */ 95 95 public SelectionAction(MapFrame mapFrame, String name, Mode mode, String desc) { 96 super(name, "selection/"+mode, desc, "S", KeyEvent.VK_S,mapFrame, ImageProvider.getCursor("normal", "selection"));96 super(name, "selection/"+mode, desc, mapFrame, ImageProvider.getCursor("normal", "selection")); 97 97 this.mode = mode; 98 98 this.selectionManager = new SelectionManager(this, false, mapFrame.mapView); … … 202 202 private Node addNearest(Collection<OsmPrimitive> path, Node start, Node end) { 203 203 Collection<Segment> c = reverseSegmentMap.get(start); 204 //if (c == null) 205 //return null; // start may be a waypoint without segments 204 206 double min = Double.MAX_VALUE; 205 207 Node next = null; -
src/org/openstreetmap/josm/tools/DateParser.java
r104 r105 15 15 16 16 private static final String[] formats = { 17 "yyyy-MM-dd'T'HH:mm:ssZ", 18 "yyyy-MM-dd'T'HH:mm:ss.SSSZ", 19 "yyyy-MM-dd HH:mm:ss", 17 20 "MM/dd/yyyy HH:mm:ss", 18 21 "MM/dd/yyyy'T'HH:mm:ss.SSSZ",
Note:
See TracChangeset
for help on using the changeset viewer.