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

stop_area test preference default value set to false

File:
1 edited

Legend:

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

    r33347 r33348  
    8383                        nodeChecker.performSolitaryStopPositionTest();
    8484
    85                         if (Main.pref.getBoolean("pt_assistant.stop-area-tests", true) == true) {
     85                        if (Main.pref.getBoolean("pt_assistant.stop-area-tests", false) == true) {
    8686                                // check if stop positions are in any stop_area relation:
    8787                                nodeChecker.performNodePartOfStopAreaTest();
     
    9696                        nodeChecker.performPlatformPartOfWayTest();
    9797
    98                         if (Main.pref.getBoolean("pt_assistant.stop-area-tests", true) == true) {
     98                        if (Main.pref.getBoolean("pt_assistant.stop-area-tests", false) == true) {
    9999                                // check if platforms are in any stop_area relation:
    100100                                nodeChecker.performNodePartOfStopAreaTest();
     
    125125
    126126                // Do some testing on stop area relations
    127                 if (Main.pref.getBoolean("pt_assistant.stop-area-tests", true) == true && StopUtils.isStopArea(r)) {
     127                if (Main.pref.getBoolean("pt_assistant.stop-area-tests", false) == true && StopUtils.isStopArea(r)) {
    128128
    129129                        StopChecker stopChecker = new StopChecker(r, this);
Note: See TracChangeset for help on using the changeset viewer.