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.

link|improve this question

1  
wow are you sure that this is the method in question? are you sure it's not in the "do some other comparing" can you post the output of javap -v ? – MeBigFatGuy Apr 14 '11 at 0:45
I don't use sonar. Does it check source code or byte-code? I would try parens here:return (right == null) ? 0 : 1; - maybe that's confusing? – user unknown Apr 14 '11 at 3:06
feedback

1 Answer

up vote 2 down vote accepted

I believe i know what's going on. I believe your code is being weaved by Clover, and the clover code is embellishing that code and the way it does it is in a not so clean way.

44: sipush  14625
47: invokevirtual   #10; //Method com_cenqua_clover/CoverageRecorder.iget:(I)I
50: ifeq    57
53: iconst_1
54: goto    58
57: iconst_0
58: iconst_1
59: ior
60: ifne    85

That is what FindBugs is complaining about.

link|improve this answer
Wow! I do not know much about the Java bytecode, but I believe you've got this answered. I do have Clover check in the build, and I was starting to suspect some interactions between Clover and sonar (with Findbugs reporting on) to be the cause for this "false positive." – tim_wonil Apr 19 '11 at 2:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.