Class renamed

This commit is contained in:
Andrey Breslav
2013-01-25 21:08:13 +04:00
parent 8e516441f1
commit f91d4c5497
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -221,7 +221,7 @@
<psi.clsCustomNavigationPolicy implementation="org.jetbrains.jet.plugin.libraries.JetClsNavigationPolicy" />
<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"/>
<psi.treeChangePreprocessor implementation="org.jetbrains.jet.asJava.JetCodeBlockModificationListener"/>
@@ -61,7 +61,7 @@ import java.io.IOException;
import java.text.MessageFormat;
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 final Project myProject;
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;
MessageBusConnection connection = myProject.getMessageBus().connect();
connection.subscribe(ProjectTopics.PROJECT_ROOTS, new ModuleRootAdapter() {