From e52277401d6cab1ac1ef0afa3fa671ce281cfa27 Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Wed, 17 Oct 2012 17:48:48 +0400 Subject: [PATCH] Unused method removed --- .../jetbrains/jet/lang/types/lang/KotlinBuiltIns.java | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/types/lang/KotlinBuiltIns.java b/compiler/frontend/src/org/jetbrains/jet/lang/types/lang/KotlinBuiltIns.java index 48b7a7e0270..7aef26ed292 100644 --- a/compiler/frontend/src/org/jetbrains/jet/lang/types/lang/KotlinBuiltIns.java +++ b/compiler/frontend/src/org/jetbrains/jet/lang/types/lang/KotlinBuiltIns.java @@ -291,15 +291,7 @@ public class KotlinBuiltIns { @NotNull public Collection getAllBuiltInClasses() { // TODO: used once, but incorrectly in JetShortNamesCache - return getStandardClassesScope().getAllDescriptors(); - } - - @Deprecated - @NotNull - public JetScope getStandardClassesScope() { - // TODO: this is more than standard classes - // TODO: the only usage makes no sense for lazily loaded library - return getBuiltInsScope(); + return getBuiltInsScope().getAllDescriptors(); } @NotNull