Skip to content

Commit

Permalink
Format tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed May 12, 2023
1 parent 190b1bd commit 5536649
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -26,11 +26,14 @@
import org.apache.commons.imaging.ImageReadException;

public final class MyLzwDecompressor {

public interface Listener {

void code(int code);

void init(int clearCode, int eoiCode);
}

private static final int MAX_TABLE_SIZE = 1 << 12;
private final byte[][] table;
private int codeSize;
Expand Down

0 comments on commit 5536649

Please sign in to comment.