This is an automated email from the ASF dual-hosted git repository. markt-asf pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit d0fc9ebf12f0af8e2dac2455fd35187cda26bc8e Author: Mark Thomas <[email protected]> AuthorDate: Wed Jun 3 09:12:36 2026 +0100 Fix import order --- java/org/apache/tomcat/util/buf/B2CConverter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/org/apache/tomcat/util/buf/B2CConverter.java b/java/org/apache/tomcat/util/buf/B2CConverter.java index 45b0af53e5..d58c49033c 100644 --- a/java/org/apache/tomcat/util/buf/B2CConverter.java +++ b/java/org/apache/tomcat/util/buf/B2CConverter.java @@ -24,8 +24,8 @@ import java.nio.charset.Charset; import java.nio.charset.CharsetDecoder; import java.nio.charset.CoderResult; import java.nio.charset.CodingErrorAction; -import java.nio.charset.StandardCharsets; import java.nio.charset.MalformedInputException; +import java.nio.charset.StandardCharsets; import java.util.Locale; import org.apache.juli.logging.Log; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
