mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-06 21:30:56 +07:00
cleanup: remove hostile Nullable, add NotNull
GitOrigin-RevId: 802c30ee41436359655e5018667720a7a7c6890a
This commit is contained in:
committed by
intellij-monorepo-bot
parent
d9110f31cc
commit
e81af0f0cf
@@ -68,9 +68,8 @@ public class RefJavaUtilImpl extends RefJavaUtil {
|
||||
type = type.getDeepComponentType();
|
||||
if (type instanceof PsiClassType) {
|
||||
type.accept(new PsiTypeVisitor<Void>() {
|
||||
@Nullable
|
||||
@Override
|
||||
public Void visitClassType(PsiClassType classType) {
|
||||
public Void visitClassType(@NotNull PsiClassType classType) {
|
||||
for (PsiType parameter : classType.getParameters()) {
|
||||
parameter.accept(this);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user