Changeset 16434 in osm


Ignore:
Timestamp:
2009-07-11T15:39:10+02:00 (15 years ago)
Author:
stoecker
Message:

fix j2792

File:
1 edited

Legend:

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

    r16346 r16434  
    3333    /** One node way error */
    3434    protected static final int ONE_NODE_WAY = 304;
     35    /** Unnamed junction error */
     36    protected static final int UNNAMED_JUNCTION  = 305;
    3537
    3638    private LinkedList<Way> multipolygonways;
     
    8890                        errors.add( new TestError(this, Severity.WARNING, tr("Unnamed ways"), UNNAMED_WAY, w) );
    8991                    else if(isRoundabout)
    90                         errors.add( new TestError(this, Severity.WARNING, tr("Unnamed Junction"), UNNAMED_WAY, w) );
     92                        errors.add( new TestError(this, Severity.WARNING, tr("Unnamed junction"), UNNAMED_JUNCTION, w) );
    9193                }
    9294            }
Note: See TracChangeset for help on using the changeset viewer.