Got a nice use case for you:
Get rid of the "~".Code:public void method13177(int i) {
if ((i & ~0x7f) != 0) {
if ((i & ~0x3fff) != 0) {
if ((i & ~0x1fffff) != 0) {
if ((i & ~0xfffffff) != 0) {
writeByte(i >>> 28 | 0x80);
}
writeByte(i >>> 21 | 0x80);
}
writeByte(i >>> 14 | 0x80);
}
writeByte(i >>> 7 | 0x80);
}
writeByte(i & 0x7f);
}
