I have a Comparator that checks "null"s for the two objects before comparing their contents. The compare method looks like this:
public int compare(MyClass left, MyClass right) {
if (left == null) {
return right == null ? 0 : 1;
}
if (right == null) {
return -1;
}
// do some other comparing
}
When I run this through sonar code quality checking tool, it reports "incompatible bit masks" error at the if statements. (It reads something like: "Correctness - Incompatible bit masks : Incompatible bit masks in (e | 0x1 == 0x0) yields constant result in ....compare(MyClass, MyClass)) I cannot see how this can be the case. Can anybody shed some light on this? Is this a false positive case?
BTW, The sonar version I am using is 2.6.
return (right == null) ? 0 : 1;- maybe that's confusing? – user unknown Apr 14 '11 at 3:06