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 48cbe3b commit eea36f8Copy full SHA for eea36f8
plugins/core/jetbrains-community/src/software/aws/toolkits/jetbrains/PluginVersionChecker.kt
@@ -78,7 +78,7 @@ class PluginVersionChecker : ApplicationInitializedListener {
78
coreDescriptor?.let { descriptor -> PluginUpdateManager.updatePlugin(descriptor, EmptyProgressIndicator()) }
79
}
80
81
- PluginEnabler.getInstance().disable(
+ PluginEnabler.HEADLESS.disable(
82
AwsToolkit.PLUGINS_INFO.values.mapNotNull {
83
val descriptor = it.descriptor as? IdeaPluginDescriptor
84
if (descriptor != null && descriptor != core.descriptor) {
@@ -106,7 +106,7 @@ class PluginVersionChecker : ApplicationInitializedListener {
106
return false
107
108
109
- PluginEnabler.getInstance().disable(listOf(descriptor))
+ PluginEnabler.HEADLESS.disable(listOf(descriptor))
110
return true
111
112
0 commit comments