-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[java] BrokenNullCheck FP with PMD 6.30.0 #3071
Comments
Hi, I found some other cases, please, check these.
Example codes is class TestBrokenNullCheck{
public void testPMD(){
//Case 1.
if ((foo == null) != (another == null) || (foo != null && !foo.equals(another)));
//Case 2.
if(list.remove(null) != null || list.remove("") != null);
if(foo(something) != null || foo(something.methodCall) != null);
//Case 3.
if (foo != null || (foo == null && another != null && another.methodCall() == 0));
//Case 4.
if (null != arr[idx] || (null == arr[idx] && !anotherArr[idx].foo()));
}
} which generate 6 alarms. Two for case 1, one for each other lines. Thank you. |
I believe, the following case is valid and not a false positive: //Case 2. : Alarms are generated for each line.
if(boo == null && boo != true) ;
if(boo == null && boo != false); Since "boo" is of type "java.lang.Boolean", if it is null, then the auto-unboxing will throw a NPE:
So, this is really a mixup between "&&" and "||" - exactly the case the rule should detect. |
This has been fixed with PMD 7.0.0-rc1. |
Affects PMD Version: pmd 6.30.0
Rule: BrokenNullCheck
https://pmd.github.io/pmd-6.30.0/pmd_rules_java_errorprone.html#brokennullcheck
Description:
Hello, I think I found some False Positives in BrokenNullCheck and I want to report them.
There are some alarms on cases which don't call method on object. It means that they cannot throw NullPointException.
I think that I found three cases which are different from each other.
Case 1. Using
instanceof
Case 2. Using
Boolean
ClassCase 3. Comparing between
Local Variable
andField
which have the same identifier and accessed bythis
.Details about codes are below.
Thank you.
Code Sample demonstrating the issue:
Expected outcome:
Expected that there wouldn't be any alarms.
Running PMD through: [CLI]
The text was updated successfully, but these errors were encountered: