Ignore:
Timestamp:
2011-10-07T21:46:00+02:00 (13 years ago)
Author:
simon04
Message:

see #4582 - clarify warning messages of overlapping way validator test

File:
1 edited

Legend:

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

    r4448 r4496  
    101101                    if (area > 0) {
    102102                        if (ways == 0 || duplicated.size() == area) {
    103                             continue;
     103                            errortype = tr("Areas share segment");
     104                            type = OVERLAPPING_AREA;
    104105                        } else if (highway == ways) {
    105                             errortype = tr("Overlapping highways (with area)");
     106                            errortype = tr("Highways share segment with area");
    106107                            type = OVERLAPPING_HIGHWAY_AREA;
    107108                        } else if (railway == ways) {
    108                             errortype = tr("Overlapping railways (with area)");
     109                            errortype = tr("Railways share segment with area");
    109110                            type = OVERLAPPING_RAILWAY_AREA;
    110111                        } else {
    111                             errortype = tr("Overlapping ways (with area)");
     112                            errortype = tr("Ways share segment with area");
    112113                            type = OVERLAPPING_WAY_AREA;
    113114                        }
Note: See TracChangeset for help on using the changeset viewer.