mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-04 23:39:07 +07:00
[spring] dependency fixed #IDEA-272436 fixed
GitOrigin-RevId: 48426459e45bc19251ccf54bd3aad0f863703933
This commit is contained in:
committed by
intellij-monorepo-bot
parent
dd7c3183dc
commit
b806fbc515
@@ -294,11 +294,9 @@ public final class PluginClassLoader extends UrlClassLoader implements PluginAwa
|
||||
pluginClassLoader.packagePrefix,
|
||||
forceLoadFromSubPluginClassloader);
|
||||
if (consistencyError != null) {
|
||||
if (!consistencyError.isEmpty()) {
|
||||
if (error == null) {
|
||||
// yes, we blame requestor plugin
|
||||
error = new PluginException(consistencyError, pluginId);
|
||||
}
|
||||
if (!consistencyError.isEmpty() && error == null) {
|
||||
// yes, we blame requestor plugin
|
||||
error = new PluginException(consistencyError, pluginId);
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user