(2147483644) in new
org.eclipse.pde.api.tools.internal.builder.ReferenceExtractor(IApiType,
Set, int)
This method compares a bitwise expression such as ((val & CONSTANT) > 0)
where CONSTANT is the negative number. Using bit arithmetic and then
comparing with the greater than operator can lead to unexpected results.
This comparison is unlikely to work as expected. The good practice is to
use '!= 0' instead of '> 0'.
Rank: Scary (5), confidence: High
Pattern: BIT_SIGNED_CHECK_HIGH_BIT
Type: BIT, Category: CORRECTNESS (Correctness)
Change-Id: I137fdf5298d6ef23cb3c3128042aed11fd6cad89
Signed-off-by: Carsten Hammer <carsten.hammer@t-online.de>