Ignore:
Timestamp:
2014-09-07T16:33:52+02:00 (10 years ago)
Author:
stoecker
Message:

remove tabs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/tests/UnclosedWays.java

    r7252 r7509  
    5050        /** The boolean indicating if special values must be ignored or considered only */
    5151        private final boolean ignore;
    52        
     52
    5353        /**
    5454         * Constructs a new {@code UnclosedWaysCheck}.
     
    6060            this(code, key, engMessage, Collections.<String>emptyList());
    6161        }
    62        
     62
    6363        /**
    6464         * Constructs a new {@code UnclosedWaysCheck}.
     
    7171            this(code, key, engMessage, ignoredValues, true);
    7272        }
    73        
     73
    7474        /**
    7575         * Constructs a new {@code UnclosedWaysCheck}.
     
    8787            this.ignore = ignore;
    8888        }
    89        
     89
    9090        /**
    9191         * Returns the test error of the given way, if any.
     
    106106            return null;
    107107        }
    108        
     108
    109109        protected boolean isValueErroneous(String value) {
    110110            return value != null && ignore != specialValues.contains(value);
     
    149149        new UnclosedWaysBooleanCheck(1130, "area",     marktr("area")),
    150150    };
    151    
     151
    152152    /**
    153153     * Returns the set of checked OSM keys.
Note: See TracChangeset for help on using the changeset viewer.