Refactoring: remove unused class

This commit is contained in:
Natalia Selezneva
2019-04-10 15:05:43 +03:00
parent 0da6d48d5e
commit 2844d48f9f
2 changed files with 7 additions and 42 deletions
@@ -23,12 +23,6 @@ import org.jetbrains.kotlin.script.KotlinScriptDefinition
import java.io.File
import kotlin.script.experimental.dependencies.ScriptDependencies
class ScriptModuleSearchScope(val scriptFile: VirtualFile, baseScope: GlobalSearchScope) : DelegatingGlobalSearchScope(baseScope) {
override fun equals(other: Any?) = other is ScriptModuleSearchScope && scriptFile == other.scriptFile && super.equals(other)
override fun hashCode() = scriptFile.hashCode() * 73 * super.hashCode()
}
data class ScriptModuleInfo(
val project: Project,
val scriptFile: VirtualFile,