This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-io.git
commit dee1d768ccc5479c11ea59e8ddcdea055684c258 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed May 3 08:29:58 2023 -0400 Format tweak --- src/main/java/org/apache/commons/io/input/DemuxInputStream.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/apache/commons/io/input/DemuxInputStream.java b/src/main/java/org/apache/commons/io/input/DemuxInputStream.java index c92471d1..451f4ce7 100644 --- a/src/main/java/org/apache/commons/io/input/DemuxInputStream.java +++ b/src/main/java/org/apache/commons/io/input/DemuxInputStream.java @@ -27,6 +27,7 @@ import org.apache.commons.io.IOUtils; * Data written to this stream is forwarded to a stream that has been associated with this thread. */ public class DemuxInputStream extends InputStream { + private final InheritableThreadLocal<InputStream> inputStreamLocal = new InheritableThreadLocal<>(); /**