Ignore:
Timestamp:
2011-12-24T00:26:04+01:00 (12 years ago)
Author:
simon04
Message:

fix #6747 - missing connection on long ways hard to find

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/tests/UnconnectedWays.java

    r4310 r4707  
    110110                    tr("Way end node near other highway"),
    111111                    UNCONNECTED_WAYS,
    112                     Arrays.asList(error.getKey(), error.getValue())));
     112                    Arrays.asList(error.getKey(), error.getValue()),
     113                    Arrays.asList(error.getKey())));
    113114        }
    114115        map.clear();
     
    128129                    tr("Way end node near other way"),
    129130                    UNCONNECTED_WAYS,
    130                     Arrays.asList(error.getKey(), error.getValue())));
     131                    Arrays.asList(error.getKey(), error.getValue()),
     132                    Arrays.asList(error.getKey())));
    131133        }
    132134        /* the following two use a shorter distance */
     
    149151                        tr("Way node near other way"),
    150152                        UNCONNECTED_WAYS,
    151                         Arrays.asList(error.getKey(), error.getValue())));
     153                        Arrays.asList(error.getKey(), error.getValue()),
     154                        Arrays.asList(error.getKey())));
    152155            }
    153156            map.clear();
     
    168171                        tr("Connected way end node near other way"),
    169172                        UNCONNECTED_WAYS,
    170                         Arrays.asList(error.getKey(), error.getValue())));
     173                        Arrays.asList(error.getKey(), error.getValue()),
     174                        Arrays.asList(error.getKey())));
    171175            }
    172176        }
Note: See TracChangeset for help on using the changeset viewer.