Ignore:
Timestamp:
2017-05-31T11:27:00+02:00 (7 years ago)
Author:
giackserva
Message:

fixed typos

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  
    5050        public static final int ERROR_CODE_END_STOP = 3741;
    5151        public static final int ERROR_CODE_SPLIT_WAY = 3742;
    52         public static final int ERROR_CODE_RELAITON_MEMBER_ROLES = 3743;
     52        public static final int ERROR_CODE_RELATION_MEMBER_ROLES = 3743;
    5353        public static final int ERROR_CODE_SOLITARY_STOP_POSITION = 3751;
    5454        public static final int ERROR_CODE_PLATFORM_PART_OF_HIGHWAY = 3752;
     
    401401
    402402                for (TestError error : segmentChecker.getErrors()) {
    403                         if (error.getCode() != PTAssistantValidatorTest.ERROR_CODE_RELAITON_MEMBER_ROLES) {
     403                        if (error.getCode() != PTAssistantValidatorTest.ERROR_CODE_RELATION_MEMBER_ROLES) {
    404404                                this.errors.add(error);
    405405                        }
  • applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/SegmentChecker.java

    r33345 r33349  
    7474                        highlighted.add(rm.getMember());
    7575                        Builder builder = TestError.builder(this.test, Severity.WARNING,
    76                                         PTAssistantValidatorTest.ERROR_CODE_RELAITON_MEMBER_ROLES);
     76                                        PTAssistantValidatorTest.ERROR_CODE_RELATION_MEMBER_ROLES);
    7777                        builder.message(tr("PT: Relation member roles do not match tags"));
    7878                        builder.primitives(primitives);
Note: See TracChangeset for help on using the changeset viewer.