From c0f36d57f7e0feaf11c7311b3467fbe61c57864a Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Tue, 22 May 2012 23:16:24 +0400 Subject: [PATCH] Removed unused parameter. --- .../quickfix/ConfigureKotlinLibraryNotificationProvider.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/idea/src/org/jetbrains/jet/plugin/quickfix/ConfigureKotlinLibraryNotificationProvider.java b/idea/src/org/jetbrains/jet/plugin/quickfix/ConfigureKotlinLibraryNotificationProvider.java index 8d0169ece5c..b9b8968982b 100644 --- a/idea/src/org/jetbrains/jet/plugin/quickfix/ConfigureKotlinLibraryNotificationProvider.java +++ b/idea/src/org/jetbrains/jet/plugin/quickfix/ConfigureKotlinLibraryNotificationProvider.java @@ -101,7 +101,7 @@ public class ConfigureKotlinLibraryNotificationProvider implements EditorNotific return null; } - private Library findOrCreateRuntimeLibrary(final Module module) { + private Library findOrCreateRuntimeLibrary() { LibraryTable table = ProjectLibraryTable.getInstance(myProject); Library kotlinRuntime = table.getLibraryByName("KotlinRuntime"); if (kotlinRuntime != null) { @@ -181,7 +181,7 @@ public class ConfigureKotlinLibraryNotificationProvider implements EditorNotific ApplicationManager.getApplication().runWriteAction(new Runnable() { @Override public void run() { - Library library = findOrCreateRuntimeLibrary(module); + Library library = findOrCreateRuntimeLibrary(); if (library != null) { ModifiableRootModel model = ModuleRootManager.getInstance(module).getModifiableModel(); if (model.findLibraryOrderEntry(library) == null) {