Repro steps:
For step 2, the constructor should look like this:
public CandidateToFitnessComputer(@Nullable CandidateToFitnessComputer<c, f=""> parent) { super(parent); }</c,>
Meaning, "parent" is tagged as @Nullable but Findbugs complains that it must be non-null.
Log in to post a comment.
For step 2, the constructor should look like this:
public CandidateToFitnessComputer(@Nullable CandidateToFitnessComputer<c, f=""> parent)
{
super(parent);
}</c,>
Meaning, "parent" is tagged as @Nullable but Findbugs complains that it must be non-null.