mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
fix false NPE alarms on fields
This commit is contained in:
@@ -59,7 +59,7 @@ public class DfaVariableState implements Cloneable {
|
||||
}
|
||||
|
||||
List<PsiExpression> initializers = NullableStuffInspection.findAllConstructorInitializers((PsiField)var);
|
||||
if (!nullable && initializers.isEmpty()) {
|
||||
if (initializers.isEmpty()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -78,7 +78,7 @@ public class DfaVariableState implements Cloneable {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
return !nullable;
|
||||
}
|
||||
|
||||
protected DfaVariableState(final DfaVariableState toClone) {
|
||||
|
||||
Reference in New Issue
Block a user