diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/ValueParameterDescriptor.java b/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/ValueParameterDescriptor.java index c8482b6f233..f66d37994dc 100644 --- a/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/ValueParameterDescriptor.java +++ b/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/ValueParameterDescriptor.java @@ -49,7 +49,6 @@ public interface ValueParameterDescriptor extends VariableDescriptor, Annotated */ boolean declaresDefaultValue(); - boolean isRef(); @Nullable JetType getVarargElementType(); @Override diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/ValueParameterDescriptorImpl.java b/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/ValueParameterDescriptorImpl.java index fd948e8a0fc..d6757f6924a 100644 --- a/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/ValueParameterDescriptorImpl.java +++ b/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/ValueParameterDescriptorImpl.java @@ -115,11 +115,6 @@ public class ValueParameterDescriptorImpl extends VariableDescriptorImpl impleme } } - @Override - public boolean isRef() { - throw new UnsupportedOperationException(); // TODO - } - @Nullable public JetType getVarargElementType() { return varargElementType;