Changeset 14394 in josm for trunk/src/org
- Timestamp:
- 2018-11-01T13:39:32+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r14384 r14394 268 268 269 269 /** 270 * All installed but not loaded plugins 271 */ 272 static final Collection<PluginInformation> pluginListNotLoaded = new LinkedList<>(); 273 274 /** 270 275 * All exceptions that occurred during plugin loading 271 276 */ … … 674 679 } 675 680 681 // Include plugins that have been processed but not been loaded (for javafx plugin) 682 allPlugins.addAll(pluginListNotLoaded); 683 676 684 return checkRequiredPluginsPreconditions(parent, allPlugins, plugin, true); 677 685 } … … 683 691 * @param parent The parent Component used to display error popup. If parent is 684 692 * null, the error popup is suppressed 685 * @param plugins the collection of all loaded plugins693 * @param plugins the collection of all processed plugins 686 694 * @param plugin the plugin for which preconditions are checked 687 695 * @param local Determines if the local or up-to-date plugin dependencies are to be checked. … … 815 823 if (checkLoadPreconditions(parent, plugins, pi)) { 816 824 toLoad.add(pi); 825 } else { 826 pluginListNotLoaded.add(pi); 817 827 } 818 828 }
Note:
See TracChangeset
for help on using the changeset viewer.