We recently upgraded from 8.4.1 to 8.5.1. After this upgrade we have been hit with dozens of false positives surrounding null checks, such as the one seen in this screenshot:
The line immediately before the issue shows a null check for agenda.getBody()
, so it cannot be null at the time getJobs()
is called.
I am aware that some are caused by SonarQube not being able to see null checks that happen in called methods, but this clearly has the null check in the same expression.
Has anyone else faced this issue with the current version?