Requested changes

This commit is contained in:
Brady 2019-12-31 17:44:20 -06:00
parent fcfa022232
commit 4a05837b01
No known key found for this signature in database
GPG Key ID: 73A788379A197567
1 changed files with 1 additions and 1 deletions

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;
}
}