diff --git a/src/java.base/share/classes/java/util/zip/GZIPInputStream.java b/src/java.base/share/classes/java/util/zip/GZIPInputStream.java index 21b23e2ab9e..f1b9f782b0e 100644 --- a/src/java.base/share/classes/java/util/zip/GZIPInputStream.java +++ b/src/java.base/share/classes/java/util/zip/GZIPInputStream.java @@ -65,7 +65,7 @@ import java.util.Objects; * {@systemProperty jdk.util.gzip.tryReadAheadAfterTrailer} system property is set * to {@code true}, then the call to {@code InputStream.available()} is skipped and a read * is performed on the underlying stream for a subsequent member. By default, - * the {@code jdk.util.gzip.tryReadAheadAfterTrailer} system property is unset, and + * the {@code jdk.util.gzip.tryReadAheadAfterTrailer} system property is not set, and * {@code InputStream.available()} gets called. * * @spec https://www.rfc-editor.org/info/rfc1952