Changeset 26599 in osm for applications/editors/josm/plugins/FastDraw/src
- Timestamp:
- 2011-09-02T17:18:16+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawingMode.java
r26535 r26599 539 539 * Updates shift and ctrl key states 540 540 */ 541 pr ivatevoid updateKeyModifiers(InputEvent e) {541 protected void updateKeyModifiers(InputEvent e) { 542 542 ctrl = (e.getModifiers() & ActionEvent.CTRL_MASK) != 0; 543 543 shift = (e.getModifiers() & ActionEvent.SHIFT_MASK) != 0; … … 686 686 if (w.isClosed()) line.closeLine(); 687 687 oldNodes = w.getNodes(); 688 List <OsmPrimitive> wl = new ArrayList (); wl.add(w);688 List <OsmPrimitive> wl = new ArrayList<OsmPrimitive>(); wl.add(w); 689 689 690 690 Command c = DeleteCommand.delete(getEditLayer(), wl, false);
Note:
See TracChangeset
for help on using the changeset viewer.