Workaround for EA-54533 - UOE: DeserializedMemberScope.getDeclarationsByLabel

This commit is contained in:
Andrey Breslav
2014-03-11 16:09:54 +04:00
parent 3f2c43bab1
commit 667afc565e
@@ -186,7 +186,7 @@ public abstract class DeserializedMemberScope implements JetScope {
@NotNull @NotNull
@Override @Override
public Collection<DeclarationDescriptor> getDeclarationsByLabel(@NotNull LabelName labelName) { public Collection<DeclarationDescriptor> getDeclarationsByLabel(@NotNull LabelName labelName) {
throw new UnsupportedOperationException("Should not be called"); return Collections.emptyList();
} }
private Collection<DeclarationDescriptor> computeAllDescriptors() { private Collection<DeclarationDescriptor> computeAllDescriptors() {