Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ public final class FlateFilterDecoderStream extends FilterInputStream
private int currentDataIndex = 0;
private int bytesDecoded = 0;

private byte[] buffer = new byte[2048];
private byte[] decodedData = new byte[4096];
private final byte[] buffer = new byte[2048];
private final byte[] decodedData = new byte[4096];
// use nowrap mode to bypass zlib-header and checksum to avoid a DataFormatException
private final Inflater inflater = new Inflater(true);

Expand Down