Ignore:
Timestamp:
2017-07-30T11:02:53+02:00 (7 years ago)
Author:
giackserva
Message:

[pt_assistant] fixed #josm15090

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/RouteChecker.java

    r33475 r33484  
    103103    protected boolean performFromToTagsTest() {
    104104
    105         String from = relation.get("from").toLowerCase();
    106         String to = relation.get("to").toLowerCase();
     105        String from = relation.get("from");
     106        String to = relation.get("to");
    107107        if (from == null || to == null || manager.getPTStopCount() == 0) {
    108108            return false;
    109109        }
     110
     111        from = from.toLowerCase();
     112        to = to.toLowerCase();
    110113
    111114        boolean foundError = false;
Note: See TracChangeset for help on using the changeset viewer.