Changeset 26051 in osm


Ignore:
Timestamp:
2011-05-24T15:00:37+02:00 (13 years ago)
Author:
akks
Message:

Utilsplugin2: removed debug output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/selection/NodeWayUtils.java

    r26049 r26051  
    230230        ways.addAll(OsmPrimitive.getFilteredList(n1.getReferrers(), Way.class));
    231231        for (Way w: ways) {
    232             System.out.println(w);
    233             System.out.println("Node1"+n1);
    234             System.out.println("Node2"+n2);
    235232
    236233            if (w.isUsable() && w.containsNode(n2) && w.containsNode(n1)) {
     
    257254                    }
    258255            }
    259             if (newNodes.size()==0) {
     256        }
     257        if (newNodes.size()==0) {
    260258                JOptionPane.showMessageDialog(Main.parent,
    261259                    tr("Please select two nodes connected by way!"),
     
    263261                    JOptionPane.WARNING_MESSAGE);
    264262            }
    265         }
    266263    }
    267264
Note: See TracChangeset for help on using the changeset viewer.