cleanup: remove hostile Nullable, add NotNull

GitOrigin-RevId: 802c30ee41436359655e5018667720a7a7c6890a
This commit is contained in:
Alexey Kudravtsev
2020-02-04 17:49:51 +03:00
committed by intellij-monorepo-bot
parent d9110f31cc
commit e81af0f0cf
36 changed files with 177 additions and 203 deletions

View File

@@ -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);
}