Revert "Add method for getting all classifiers with given name from the scope"

This reverts commit 97759f5bb7.
This commit is contained in:
Nikolay Krasko
2014-01-15 19:13:05 +04:00
parent 0d141d959a
commit 72d3b46fc6
12 changed files with 6 additions and 83 deletions
@@ -160,13 +160,6 @@ public abstract class DeserializedMemberScope implements JetScope {
return getClassDescriptor(name);
}
@NotNull
@Override
public final Collection<ClassifierDescriptor> getClassifiers(@NotNull Name name) {
ClassifierDescriptor classifier = getClassifier(name);
return classifier != null ? Collections.singleton(classifier) : Collections.<ClassifierDescriptor>emptyList();
}
@Nullable
protected abstract ClassifierDescriptor getClassDescriptor(@NotNull Name name);