mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-08-04 20:15:28 -04:00
Code-style.
This commit is contained in:
parent
791e1b2d56
commit
55a373b0ff
@ -92,7 +92,7 @@ public final class PackBitsEncoder implements Encoder {
|
|||||||
// Compressed run
|
// Compressed run
|
||||||
int run = 1;
|
int run = 1;
|
||||||
byte replicate = pBuffer[offset];
|
byte replicate = pBuffer[offset];
|
||||||
while(run < 127 && offset < max && pBuffer[offset] == pBuffer[offset + 1]) {
|
while (run < 127 && offset < max && pBuffer[offset] == pBuffer[offset + 1]) {
|
||||||
offset++;
|
offset++;
|
||||||
run++;
|
run++;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user