Class renamed
This commit is contained in:
@@ -221,7 +221,7 @@
|
|||||||
<psi.clsCustomNavigationPolicy implementation="org.jetbrains.jet.plugin.libraries.JetClsNavigationPolicy" />
|
<psi.clsCustomNavigationPolicy implementation="org.jetbrains.jet.plugin.libraries.JetClsNavigationPolicy" />
|
||||||
<psi.clsDecompiledFileProvider implementation="org.jetbrains.jet.plugin.libraries.JetClsFileDecompiledPsiFileProvider" />
|
<psi.clsDecompiledFileProvider implementation="org.jetbrains.jet.plugin.libraries.JetClsFileDecompiledPsiFileProvider" />
|
||||||
|
|
||||||
<editorNotificationProvider implementation="org.jetbrains.jet.plugin.versions.ConfigureKotlinLibraryNotificationProvider"/>
|
<editorNotificationProvider implementation="org.jetbrains.jet.plugin.versions.KotlinLibrariesNotificationProvider"/>
|
||||||
<editorNotificationProvider implementation="org.jetbrains.jet.plugin.quickfix.AbsentJdkAnnotationsNotifications"/>
|
<editorNotificationProvider implementation="org.jetbrains.jet.plugin.quickfix.AbsentJdkAnnotationsNotifications"/>
|
||||||
|
|
||||||
<psi.treeChangePreprocessor implementation="org.jetbrains.jet.asJava.JetCodeBlockModificationListener"/>
|
<psi.treeChangePreprocessor implementation="org.jetbrains.jet.asJava.JetCodeBlockModificationListener"/>
|
||||||
|
|||||||
+2
-2
@@ -61,7 +61,7 @@ import java.io.IOException;
|
|||||||
import java.text.MessageFormat;
|
import java.text.MessageFormat;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
|
|
||||||
public class ConfigureKotlinLibraryNotificationProvider extends EditorNotifications.Provider<EditorNotificationPanel> {
|
public class KotlinLibrariesNotificationProvider extends EditorNotifications.Provider<EditorNotificationPanel> {
|
||||||
private static final Key<EditorNotificationPanel> KEY = Key.create("configure.kotlin.library");
|
private static final Key<EditorNotificationPanel> KEY = Key.create("configure.kotlin.library");
|
||||||
private final Project myProject;
|
private final Project myProject;
|
||||||
private final Runnable updateNotifications = new Runnable() {
|
private final Runnable updateNotifications = new Runnable() {
|
||||||
@@ -71,7 +71,7 @@ public class ConfigureKotlinLibraryNotificationProvider extends EditorNotificati
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
public ConfigureKotlinLibraryNotificationProvider(Project project) {
|
public KotlinLibrariesNotificationProvider(Project project) {
|
||||||
myProject = project;
|
myProject = project;
|
||||||
MessageBusConnection connection = myProject.getMessageBus().connect();
|
MessageBusConnection connection = myProject.getMessageBus().connect();
|
||||||
connection.subscribe(ProjectTopics.PROJECT_ROOTS, new ModuleRootAdapter() {
|
connection.subscribe(ProjectTopics.PROJECT_ROOTS, new ModuleRootAdapter() {
|
||||||
Reference in New Issue
Block a user