This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push: new 7302b1cf69 Use correct import 7302b1cf69 is described below commit 7302b1cf696ef5a17d2bbea0bb965ac1d4128c11 Author: Mark Thomas <ma...@apache.org> AuthorDate: Fri Sep 15 10:40:08 2023 +0100 Use correct import --- java/org/apache/coyote/http11/filters/ChunkedOutputFilter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/org/apache/coyote/http11/filters/ChunkedOutputFilter.java b/java/org/apache/coyote/http11/filters/ChunkedOutputFilter.java index c7a6f27a48..5879bbf2ea 100644 --- a/java/org/apache/coyote/http11/filters/ChunkedOutputFilter.java +++ b/java/org/apache/coyote/http11/filters/ChunkedOutputFilter.java @@ -16,6 +16,7 @@ */ package org.apache.coyote.http11.filters; +import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.OutputStreamWriter; import java.nio.ByteBuffer; @@ -30,7 +31,6 @@ import org.apache.coyote.Response; import org.apache.coyote.http11.HttpOutputBuffer; import org.apache.coyote.http11.OutputFilter; import org.apache.tomcat.util.buf.HexUtils; -import org.apache.tomcat.util.http.fileupload.ByteArrayOutputStream; /** * Chunked output filter. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org