We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2771cb5 commit b506d9fCopy full SHA for b506d9f
src/main/java/com/octopod/nixium/nxsuite/build/PluginControl.java
@@ -134,7 +134,7 @@ public static boolean unloadPlugin(String pluginName){
134
pluginsField.setAccessible(true);
135
plugins = (List<Plugin>) pluginsField.get(pluginManager);
136
137
- Field namesField = pluginManager.getClass().getDeclaredField("plugins");
+ Field namesField = pluginManager.getClass().getDeclaredField("lookupNames");
138
namesField.setAccessible(true);
139
names = (Map<String, Plugin>) namesField.get(pluginManager);
140
0 commit comments