Windows Eclipse SonarLint pugin 7.9.0.66038 for java
The documentation states that S5411 will NOT be raised if already checked for null
The following code is doing a null check via ‘instanceOf’ but the issue is still reported.
if(value instanceof Boolean)
valueString = (Boolean)value ? “TRUE” : “FALSE”;