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.
FlutterSdkManager
afterLibraryRenamed
1 parent 26fc585 commit 8055275Copy full SHA for 8055275
flutter-idea/src/io/flutter/sdk/FlutterSdkManager.java
@@ -15,6 +15,7 @@
15
import com.intellij.openapi.util.Disposer;
16
import com.intellij.util.EventDispatcher;
17
import org.jetbrains.annotations.NotNull;
18
+import org.jetbrains.annotations.Nullable;
19
20
import java.util.EventListener;
21
import java.util.Objects;
@@ -124,7 +125,7 @@ public void afterLibraryAdded(@NotNull Library newLibrary) {
124
125
}
126
127
@Override
- public void afterLibraryRenamed(@NotNull Library library) {
128
+ public void afterLibraryRenamed(@NotNull Library library, @Nullable String newName) {
129
// Since we key off name, test to be safe.
130
checkForFlutterSdkChange();
131
0 commit comments