We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2631f84 commit 71b9418Copy full SHA for 71b9418
src/main/java/com/stringcompressor/AsciiCompressor.java
@@ -14,7 +14,6 @@ public abstract class AsciiCompressor {
14
// Fields:
15
16
protected final byte[] supportedCharset;
17
- protected final byte[] lookupTable = new byte[128]; // ASCII range.
18
19
/**
20
* To avoid duplicating strings and save memory, the compressor will modify
@@ -29,6 +28,8 @@ public abstract class AsciiCompressor {
29
28
*/
30
protected boolean throwException;
31
+ private final byte[] lookupTable = new byte[128]; // ASCII range.
32
+
33
// Constructor:
34
35
public AsciiCompressor(byte[] supportedCharset) {
0 commit comments