Requested changes

This commit is contained in:
Brady
2019-12-31 17:44:20 -06:00
parent fcfa022232
commit 4a05837b01

View File

@@ -85,7 +85,7 @@ public final class VarInt {
}
// Most significant bit denotes another byte is to be read.
if ((b & 0x80) != 0x80) {
if ((b & 0x80) == 0) {
break;
}
}