]> source.dussan.org Git - sonarqube.git/blob
67107ce89d397a90860e0437a3ebdaa0689e14e9
[sonarqube.git] /
1 <p> Signed bytes can only have a value in the range -128 to 127. Comparing
2 a signed byte with a value outside that range is vacuous and likely to be incorrect.
3 To convert a signed byte <code>b</code> to an unsigned value in the range 0..255,
4 use <code>0xff &amp; b</code>
5 </p>