Commit 0decda8e authored by Leonid Shalupov's avatar Leonid Shalupov
Browse files

ProjectOrderEnumerator: still allow Nullable rootsCache

parent 555bcd5c
Showing with 2 additions and 1 deletion
+2 -1
......@@ -25,6 +25,7 @@ import com.intellij.util.PairProcessor;
import com.intellij.util.Processor;
import gnu.trove.THashSet;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.util.List;
......@@ -34,7 +35,7 @@ import java.util.List;
public class ProjectOrderEnumerator extends OrderEnumeratorBase {
private final Project myProject;
public ProjectOrderEnumerator(@NotNull Project project, @NotNull OrderRootsCache rootsCache) {
public ProjectOrderEnumerator(@NotNull Project project, @Nullable OrderRootsCache rootsCache) {
super(rootsCache);
myProject = project;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment