Delete unused method from VirtualFileFinder

This commit is contained in:
Alexander Udalov
2013-09-20 17:43:20 +04:00
parent b42a3e6f6c
commit fa9307d08c
3 changed files with 36 additions and 23 deletions
@@ -17,7 +17,6 @@
package org.jetbrains.jet.cli.jvm.compiler;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.psi.search.GlobalSearchScope;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.jet.lang.resolve.java.header.KotlinClassFileHeader;
@@ -33,14 +32,6 @@ public class CliVirtualFileFinder implements VirtualFileFinder {
classPath = path;
}
@Nullable
@Override
public VirtualFile find(@NotNull FqName className, @NotNull GlobalSearchScope scope) {
//TODO: use scope
return find(className);
}
@Nullable
@Override
public VirtualFile find(@NotNull FqName className) {