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 5041f00 commit 63e9575Copy full SHA for 63e9575
idea/idea-analysis/src/org/jetbrains/jet/plugin/vfilefinder/IDEVirtualFileFinder.java
@@ -42,6 +42,10 @@ public final class IDEVirtualFileFinder extends VirtualFileKotlinClassFinder imp
42
public IDEVirtualFileFinder(@NotNull Project project, @NotNull GlobalSearchScope scope) {
43
this.project = project;
44
this.scope = scope;
45
+
46
+ if (scope != GlobalSearchScope.EMPTY_SCOPE && scope.getProject() == null) {
47
+ LOG.warn("Scope with null project " + scope);
48
+ }
49
}
50
51
@Nullable
0 commit comments