mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 12:31:26 +07:00
cleanup: notnull and fix Processor type parameter types
GitOrigin-RevId: 694f1cf4f8b2602e5a0e199c92490e68ec303c1b
This commit is contained in:
committed by
intellij-monorepo-bot
parent
fb8057850a
commit
5d41e42767
@@ -154,7 +154,7 @@ public class PyJavaClassType implements PyClassLikeType {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visitMembers(@NotNull final Processor<PsiElement> processor, final boolean inherited, @NotNull TypeEvalContext context) {
|
||||
public void visitMembers(final @NotNull Processor<? super PsiElement> processor, final boolean inherited, @NotNull TypeEvalContext context) {
|
||||
for (PsiMethod method : myClass.getAllMethods()) {
|
||||
processor.process(method);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user