Changeset 10987 in josm


Ignore:
Timestamp:
2016-09-10T04:47:45+02:00 (8 years ago)
Author:
Don-vip
Message:

sonar - squid:S2156 - "final" classes should not have "protected" members

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r10982 r10987  
    239239     * All installed and loaded plugins (resp. their main classes)
    240240     */
    241     protected static final Collection<PluginProxy> pluginList = new LinkedList<>();
     241    static final Collection<PluginProxy> pluginList = new LinkedList<>();
    242242
    243243    /**
    244244     * All exceptions that occured during plugin loading
    245245     */
    246     protected static final Map<String, Exception> pluginLoadingExceptions = new HashMap<>();
     246    static final Map<String, Exception> pluginLoadingExceptions = new HashMap<>();
    247247
    248248    /**
Note: See TracChangeset for help on using the changeset viewer.