- Timestamp:
- 2016-09-10T04:47:45+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r10982 r10987 239 239 * All installed and loaded plugins (resp. their main classes) 240 240 */ 241 protectedstatic final Collection<PluginProxy> pluginList = new LinkedList<>();241 static final Collection<PluginProxy> pluginList = new LinkedList<>(); 242 242 243 243 /** 244 244 * All exceptions that occured during plugin loading 245 245 */ 246 protectedstatic final Map<String, Exception> pluginLoadingExceptions = new HashMap<>();246 static final Map<String, Exception> pluginLoadingExceptions = new HashMap<>(); 247 247 248 248 /**
Note:
See TracChangeset
for help on using the changeset viewer.