Parasoft code analyzer warning - 'variable is checked for null after being dereferenced'

747 Views Asked by At

How to avoid following error - ""user" is checked for null after being dereferenced.". Highlighted code

OLCC olcc = saveOLCCRequest.getOLCC();
         if (olcc != null) {

Thanks.

1

There are 1 best solutions below

1
On

This is either a bug in the parasoft analyzer, or it has been able to determine that saveOLCCRequest.getOLCC() cannot return null.

It's not possible to say which from the two line snippet you've posted, but if getOLCC() cannot possibly return null then you can remove the warning by removing the null check.