Changeset 3187 in josm
- Timestamp:
- 2010-04-15T19:45:35+02:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/SelectAction.java
r3186 r3187 212 212 "Add and move a virtual new node to {0} ways", virtualWays.size(), 213 213 virtualWays.size()); 214 System.err.println("Select Action/mouseDragged "+ Thread.currentThread().getName());215 214 Main.main.undoRedo.add(new SequenceCommand(text, virtualCmds)); 216 215 selectPrims(Collections.singleton((OsmPrimitive)virtualNode), false, false, false, false); … … 325 324 virtualWays.add(nearestWS); 326 325 if(virtualNode == null) { 327 System.err.println("Select Action/getNearestCollectionVirtual "+ Thread.currentThread().getName());328 326 virtualNode = new Node(Main.map.mapView.getLatLon(pc.x, pc.y)); 329 327 } -
trunk/src/org/openstreetmap/josm/command/MoveCommand.java
r3186 r3187 91 91 @Override public boolean executeCommand() { 92 92 for (Node n : nodes) { 93 System.err.println("MoveCommand "+ Thread.currentThread().getName());94 93 // in case #3892 happens again 95 94 if (n == null) -
trunk/src/org/openstreetmap/josm/data/osm/DataSet.java
r3186 r3187 768 768 nodes.remove(node); 769 769 node.setCoorInternal(newCoor); 770 // System.err.println("DataSet/reindexNode "+ Thread.currentThread().getName());771 770 nodes.add(node); 772 771 for (OsmPrimitive primitive: node.getReferrers()) {
Note:
See TracChangeset
for help on using the changeset viewer.