Changeset 26051 in osm for applications
- Timestamp:
- 2011-05-24T15:00:37+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/selection/NodeWayUtils.java
r26049 r26051 230 230 ways.addAll(OsmPrimitive.getFilteredList(n1.getReferrers(), Way.class)); 231 231 for (Way w: ways) { 232 System.out.println(w);233 System.out.println("Node1"+n1);234 System.out.println("Node2"+n2);235 232 236 233 if (w.isUsable() && w.containsNode(n2) && w.containsNode(n1)) { … … 257 254 } 258 255 } 259 if (newNodes.size()==0) { 256 } 257 if (newNodes.size()==0) { 260 258 JOptionPane.showMessageDialog(Main.parent, 261 259 tr("Please select two nodes connected by way!"), … … 263 261 JOptionPane.WARNING_MESSAGE); 264 262 } 265 }266 263 } 267 264
Note:
See TracChangeset
for help on using the changeset viewer.