do not show tooltips for INFORMATION infos for some inspections

This commit is contained in:
Alexey Kudravtsev
2017-02-20 15:52:49 +03:00
parent 18547af62e
commit 48f1830475
@@ -118,16 +118,6 @@ public class AnonymousCanBeLambdaInspection extends BaseJavaBatchLocalInspection
};
}
interface R { void run(); }
void f(R r) {
f(new R() {
@Override
public void run() {
System.out.println();
}
});
}
static boolean hasRuntimeAnnotations(PsiMethod method, @NotNull Set<String> runtimeAnnotationsToIgnore) {
PsiAnnotation[] annotations = method.getModifierList().getAnnotations();
for (PsiAnnotation annotation : annotations) {