Ignore:
Timestamp:
2016-12-13T01:38:24+01:00 (7 years ago)
Author:
Don-vip
Message:

findbugs - EQ_DOESNT_OVERRIDE_EQUALS, MS_MUTABLE_COLLECTION_PKGPROTECT

Location:
trunk/src/org/openstreetmap/josm/gui
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSStyleSource.java

    r11383 r11384  
    102102     * Set of all supported MapCSS keys.
    103103     */
    104     protected static final Set<String> SUPPORTED_KEYS = new HashSet<>();
     104    static final Set<String> SUPPORTED_KEYS = new HashSet<>();
    105105    static {
    106106        Field[] declaredFields = StyleKeys.class.getDeclaredFields();
  • trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionManager.java

    r10689 r11384  
    115115     * the same as tagCache but for the preset keys and values can be accessed directly
    116116     */
    117     protected static final MultiMap<String, String> PRESET_TAG_CACHE = new MultiMap<>();
     117    static final MultiMap<String, String> PRESET_TAG_CACHE = new MultiMap<>();
    118118
    119119    /**
    120120     * Cache for tags that have been entered by the user.
    121121     */
    122     protected static final Set<UserInputTag> USER_INPUT_TAG_CACHE = new LinkedHashSet<>();
     122    static final Set<UserInputTag> USER_INPUT_TAG_CACHE = new LinkedHashSet<>();
    123123
    124124    /**
     
    132132     * the same as roleCache but for the preset roles can be accessed directly
    133133     */
    134     protected static final Set<String> PRESET_ROLE_CACHE = new HashSet<>();
     134    static final Set<String> PRESET_ROLE_CACHE = new HashSet<>();
    135135
    136136    /**
  • trunk/src/org/openstreetmap/josm/gui/tagging/presets/items/KeyedItem.java

    r10591 r11384  
    2828
    2929    /** Last value of each key used in presets, used for prefilling corresponding fields */
    30     protected static final Map<String, String> LAST_VALUES = new HashMap<>();
     30    static final Map<String, String> LAST_VALUES = new HashMap<>();
    3131
    3232    /** This specifies the property key that will be modified by the item. */
Note: See TracChangeset for help on using the changeset viewer.