You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sonarqube 7.8 community shows some issues, in particular possible null pointers being dereferenced. Example in
src/main/java/org/jheaps/tree/BinaryTreeSoftAddressableHeap.java.
Line 810 implies that 'cur1' can be null. In Line 772 'cur1' is dereferenced. Same happens with 'cur2'. Also in src/main/java/org/jheaps/tree/BinaryTreeSoftHeap.java.
Is this expected or false positive?
The text was updated successfully, but these errors were encountered:
Sonarqube 7.8 community shows some issues, in particular possible null pointers being dereferenced. Example in
src/main/java/org/jheaps/tree/BinaryTreeSoftAddressableHeap.java.
Line 810 implies that 'cur1' can be null. In Line 772 'cur1' is dereferenced. Same happens with 'cur2'. Also in src/main/java/org/jheaps/tree/BinaryTreeSoftHeap.java.
Is this expected or false positive?
The text was updated successfully, but these errors were encountered: