From 92bbd1d820bb9973b1cbdf6d2f03f72cedac9dcd Mon Sep 17 00:00:00 2001 From: Jaikiran Pai Date: Tue, 9 Jun 2026 15:35:39 +0530 Subject: [PATCH] replace unset with "not set" --- src/java.base/share/classes/java/util/zip/GZIPInputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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