From 67eca2cbb750049a44a66d392af383c786037fb6 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Wed, 22 Jun 2016 22:34:52 +0300 Subject: [PATCH] Minor: remove superfluous method that was necessary becuase of KT-5457 --- .../src/org/jetbrains/kotlin/analyzer/AnalyzerFacade.kt | 6 ------ 1 file changed, 6 deletions(-) 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 - } - } }