We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
SnappyOutputStream.MIN_BLOCK_SIZE
SnappyOutputStream.DEFAULT_BLOCK_SIZE
1 parent 4277fbc commit 466d05fCopy full SHA for 466d05f
src/main/java/org/xerial/snappy/SnappyOutputStream.java
@@ -60,8 +60,8 @@ public class SnappyOutputStream
60
extends OutputStream
61
{
62
public static final int MAX_BLOCK_SIZE = 512 * 1024 * 1024; // 512 MiB
63
- static final int MIN_BLOCK_SIZE = 1 * 1024;
64
- static final int DEFAULT_BLOCK_SIZE = 32 * 1024; // Use 32kb for the default block size
+ public static final int MIN_BLOCK_SIZE = 1 * 1024;
+ public static final int DEFAULT_BLOCK_SIZE = 32 * 1024; // Use 32kb for the default block size
65
66
protected final OutputStream out;
67
private final int blockSize;
0 commit comments