Deleted strange unused method
This commit is contained in:
@@ -35,9 +35,6 @@ public interface JetDeclarationWithBody extends JetDeclaration {
|
|||||||
|
|
||||||
boolean hasDeclaredReturnType();
|
boolean hasDeclaredReturnType();
|
||||||
|
|
||||||
@NotNull
|
|
||||||
JetElement asElement();
|
|
||||||
|
|
||||||
@NotNull
|
@NotNull
|
||||||
List<JetParameter> getValueParameters();
|
List<JetParameter> getValueParameters();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -93,12 +93,6 @@ abstract public class JetFunctionNotStubbed extends JetTypeParameterListOwnerNot
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
|
||||||
@Override
|
|
||||||
public JetElement asElement() {
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isLocal() {
|
public boolean isLocal() {
|
||||||
PsiElement parent = getParent();
|
PsiElement parent = getParent();
|
||||||
|
|||||||
@@ -195,12 +195,6 @@ public class JetNamedFunction extends JetTypeParameterListOwnerStub<PsiJetFuncti
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
|
||||||
@Override
|
|
||||||
public JetElement asElement() {
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isLocal() {
|
public boolean isLocal() {
|
||||||
PsiElement parent = getParent();
|
PsiElement parent = getParent();
|
||||||
|
|||||||
@@ -108,12 +108,6 @@ public class JetPropertyAccessor extends JetDeclarationStub<PsiJetPropertyAccess
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotNull
|
|
||||||
@Override
|
|
||||||
public JetElement asElement() {
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
public JetTypeReference getReturnTypeReference() {
|
public JetTypeReference getReturnTypeReference() {
|
||||||
return getStubOrPsiChild(JetStubElementTypes.TYPE_REFERENCE);
|
return getStubOrPsiChild(JetStubElementTypes.TYPE_REFERENCE);
|
||||||
|
|||||||
Reference in New Issue
Block a user