method chain completion: remove unused method

This commit is contained in:
Dmitry Batkovich
2017-05-15 17:43:40 +03:00
parent 1e26ed62db
commit 11d7d9e4cd
@@ -76,15 +76,4 @@ public final class MethodChainsSearchUtil {
.filter(t -> !TypeConversionUtil.isPrimitiveAndNotNull(t))
.count();
}
public static boolean doesMethodsContainParameters(@NotNull PsiMethod[] psiMethods,
@NotNull Set<PsiType> parameterRawTypes) {
for (PsiMethod m : psiMethods) {
//TODO
//if (!containsParameter(m, parameterRawTypes)) {
// return true;
//}
}
return false;
}
}