]> source.dussan.org Git - sonarqube.git/blob
0e3942450d1158696dd3e445cb549ca1ebf6ab8d
[sonarqube.git] /
1 <p>
2 The code uses x % 2 == 1 to check to see if a value is odd, but this won't work
3 for negative numbers (e.g., (-5) % 2 == -1). If this code is intending to check
4 for oddness, consider using x &amp; 1 == 1, or x % 2 != 0.
5 </p>