Skip to content

Commit bb82f92

Browse files
committed
Fix indentation
1 parent 924274f commit bb82f92

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/main/java/me/lemire/integercompression/VariableByte.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,13 @@ public void headlessUncompress(int[] in, IntWrapper inpos, int inlength, int[] o
189189
int finaloutpos = num + tmpoutpos;
190190
for (int v = 0, shift = 0; tmpoutpos < finaloutpos;) {
191191
val = in[p];
192-
int c = val >>> s;
193-
// Shift to next byte
194-
s += 8;
195-
// Shift to next integer if s==32
196-
p += s>>5;
197-
// cycle from 31 to 0
198-
s = s & 31;
192+
int c = val >>> s;
193+
// Shift to next byte
194+
s += 8;
195+
// Shift to next integer if s==32
196+
p += s>>5;
197+
// cycle from 31 to 0
198+
s = s & 31;
199199
v += ((c & 127) << shift);
200200
if ((c & 128) == 128) {
201201
out[tmpoutpos++] = v;

0 commit comments

Comments
 (0)