Skip to content
Merged
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 @@ -32,6 +32,7 @@
import java.io.IOException;
import java.io.EOFException;
import java.util.Objects;
import org.jspecify.annotations.NullMarked;

/**
* This class implements a stream filter for reading compressed data in
Expand All @@ -42,6 +43,7 @@
* @since 1.1
*
*/
@NullMarked
public class GZIPInputStream extends InflaterInputStream {
/**
* CRC-32 for uncompressed data.
Expand Down
Loading