Changeset 33349 in osm for applications/editors/josm/plugins/pt_assistant/src/org
- Timestamp:
- 2017-05-31T11:27:00+02:00 (8 years ago)
- Location:
- applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/PTAssistantValidatorTest.java
r33348 r33349 50 50 public static final int ERROR_CODE_END_STOP = 3741; 51 51 public static final int ERROR_CODE_SPLIT_WAY = 3742; 52 public static final int ERROR_CODE_RELA ITON_MEMBER_ROLES = 3743;52 public static final int ERROR_CODE_RELATION_MEMBER_ROLES = 3743; 53 53 public static final int ERROR_CODE_SOLITARY_STOP_POSITION = 3751; 54 54 public static final int ERROR_CODE_PLATFORM_PART_OF_HIGHWAY = 3752; … … 401 401 402 402 for (TestError error : segmentChecker.getErrors()) { 403 if (error.getCode() != PTAssistantValidatorTest.ERROR_CODE_RELA ITON_MEMBER_ROLES) {403 if (error.getCode() != PTAssistantValidatorTest.ERROR_CODE_RELATION_MEMBER_ROLES) { 404 404 this.errors.add(error); 405 405 } -
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/SegmentChecker.java
r33345 r33349 74 74 highlighted.add(rm.getMember()); 75 75 Builder builder = TestError.builder(this.test, Severity.WARNING, 76 PTAssistantValidatorTest.ERROR_CODE_RELA ITON_MEMBER_ROLES);76 PTAssistantValidatorTest.ERROR_CODE_RELATION_MEMBER_ROLES); 77 77 builder.message(tr("PT: Relation member roles do not match tags")); 78 78 builder.primitives(primitives);
Note:
See TracChangeset
for help on using the changeset viewer.