mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-10-04 11:26:44 -04:00
Code-style.
This commit is contained in:
@@ -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++;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user