Remove superfluous isVararg() from JavaMethod

This commit is contained in:
Alexander Udalov
2014-08-29 15:39:39 +04:00
parent 924283d2d9
commit 3485d65d8a
3 changed files with 6 additions and 10 deletions
@@ -69,9 +69,4 @@ public class JavaMethodImpl extends JavaMemberImpl<PsiMethod> implements JavaMet
PsiType psiType = getPsi().getReturnType();
return psiType == null ? null : JavaTypeImpl.create(psiType);
}
@Override
public boolean isVararg() {
return getPsi().isVarArgs();
}
}