Changeset 10526 in osm for applications/editors


Ignore:
Timestamp:
2008-09-06T23:38:00+02:00 (16 years ago)
Author:
stoecker
Message:

minor fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/UnconnectedWays.java

    r10521 r10526  
    9292                                for(Map.Entry<Node, Way> error : map.entrySet())
    9393                                {
    94                                         errors.add(new TestError(this, Severity.WARNING,
     94                                        errors.add(new TestError(this, Severity.OTHER,
    9595                                        tr("Way node near other way"), UNCONNECTED_WAYS,
    9696                                        Arrays.asList(error.getKey(), error.getValue())));
     
    110110                                for(Map.Entry<Node, Way> error : map.entrySet())
    111111                                {
    112                                         errors.add(new TestError(this, Severity.WARNING,
     112                                        errors.add(new TestError(this, Severity.OTHER,
    113113                                        tr("Connected way end node near other way"), UNCONNECTED_WAYS,
    114114                                        Arrays.asList(error.getKey(), error.getValue())));
Note: See TracChangeset for help on using the changeset viewer.