Changeset 3187 in josm


Ignore:
Timestamp:
2010-04-15T19:45:35+02:00 (14 years ago)
Author:
bastiK
Message:

clean up debugging code from last commit

Location:
trunk/src/org/openstreetmap/josm
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/mapmode/SelectAction.java

    r3186 r3187  
    212212                    "Add and move a virtual new node to {0} ways", virtualWays.size(),
    213213                    virtualWays.size());
    214             System.err.println("Select Action/mouseDragged "+ Thread.currentThread().getName());
    215214            Main.main.undoRedo.add(new SequenceCommand(text, virtualCmds));
    216215            selectPrims(Collections.singleton((OsmPrimitive)virtualNode), false, false, false, false);
     
    325324                            virtualWays.add(nearestWS);
    326325                            if(virtualNode == null) {
    327                                 System.err.println("Select Action/getNearestCollectionVirtual "+ Thread.currentThread().getName());
    328326                                virtualNode = new Node(Main.map.mapView.getLatLon(pc.x, pc.y));
    329327                            }
  • trunk/src/org/openstreetmap/josm/command/MoveCommand.java

    r3186 r3187  
    9191    @Override public boolean executeCommand() {
    9292        for (Node n : nodes) {
    93             System.err.println("MoveCommand "+ Thread.currentThread().getName());
    9493            // in case #3892 happens again
    9594            if (n == null)
  • trunk/src/org/openstreetmap/josm/data/osm/DataSet.java

    r3186 r3187  
    768768        nodes.remove(node);
    769769        node.setCoorInternal(newCoor);
    770 //        System.err.println("DataSet/reindexNode "+ Thread.currentThread().getName());
    771770        nodes.add(node);
    772771        for (OsmPrimitive primitive: node.getReferrers()) {
Note: See TracChangeset for help on using the changeset viewer.