Changeset 4869 in josm for trunk/src/org/openstreetmap/josm/data/validation/tests/NodesWithSameName.java
- Timestamp:
- 2012-01-24T21:52:43+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/NodesWithSameName.java
r3671 r4869 4 4 import static org.openstreetmap.josm.tools.I18n.tr; 5 5 6 import java.util.Map; 7 import java.util.List; 6 import java.util.ArrayList; 8 7 import java.util.HashMap; 9 8 import java.util.HashSet; 10 import java.util.ArrayList; 9 import java.util.List; 10 import java.util.Map; 11 11 12 12 import org.openstreetmap.josm.data.osm.Node; … … 17 17 18 18 public class NodesWithSameName extends Test { 19 protected static int SAME_NAME = 801;19 protected static final int SAME_NAME = 801; 20 20 21 21 private Map<String, List<Node>> namesToNodes; … … 23 23 public NodesWithSameName() { 24 24 super(tr("Nodes with same name"), 25 tr("This test finds nodes that have the same name (might be duplicates)."));25 tr("This test finds nodes that have the same name (might be duplicates).")); 26 26 } 27 27
Note:
See TracChangeset
for help on using the changeset viewer.