diff --git a/compiler/frontend/src/org/jetbrains/kotlin/analyzer/AnalyzerFacade.kt b/compiler/frontend/src/org/jetbrains/kotlin/analyzer/AnalyzerFacade.kt index 96855f599ac..0da33a9307a 100644 --- a/compiler/frontend/src/org/jetbrains/kotlin/analyzer/AnalyzerFacade.kt +++ b/compiler/frontend/src/org/jetbrains/kotlin/analyzer/AnalyzerFacade.kt @@ -127,7 +127,6 @@ interface ModuleInfo { } enum class DependenciesOnBuiltIns : DependencyOnBuiltIns { - NONE { override fun adjustDependencies(builtinsModule: ModuleDescriptorImpl, dependencies: MutableList) { //do nothing @@ -138,11 +137,6 @@ interface ModuleInfo { dependencies.add(builtinsModule) } }; - - override fun adjustDependencies(builtinsModule: ModuleDescriptorImpl, dependencies: MutableList) { - //TODO: KT-5457 - } - } }