Ignore:
Timestamp:
2014-04-29T03:24:57+02:00 (10 years ago)
Author:
Don-vip
Message:

Sonar - fix various issues

File:
1 edited

Legend:

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

    r7012 r7025  
    7171
    7272    /** The spell check key substitutions: the key should be substituted by the value */
    73     protected static Map<String, String> spellCheckKeyData;
     73    private static Map<String, String> spellCheckKeyData;
    7474    /** The spell check preset values */
    75     protected static MultiMap<String, String> presetsValueData;
     75    private static MultiMap<String, String> presetsValueData;
    7676    /** The TagChecker data */
    77     protected static final List<CheckerData> checkerData = new ArrayList<>();
    78     protected static final List<String> ignoreDataStartsWith = new ArrayList<>();
    79     protected static final List<String> ignoreDataEquals = new ArrayList<>();
    80     protected static final List<String> ignoreDataEndsWith = new ArrayList<>();
    81     protected static final List<IgnoreKeyPair> ignoreDataKeyPair = new ArrayList<>();
     77    private static final List<CheckerData> checkerData = new ArrayList<>();
     78    private static final List<String> ignoreDataStartsWith = new ArrayList<>();
     79    private static final List<String> ignoreDataEquals = new ArrayList<>();
     80    private static final List<String> ignoreDataEndsWith = new ArrayList<>();
     81    private static final List<IgnoreKeyPair> ignoreDataKeyPair = new ArrayList<>();
    8282
    8383    /** The preferences prefix */
Note: See TracChangeset for help on using the changeset viewer.