This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit b2d404875d5dd14d8be323fc5eca2d57c0a47919 Author: Mark Thomas <ma...@apache.org> AuthorDate: Mon Jun 26 10:43:40 2023 +0100 Use consistent naming for i18n keys --- java/org/apache/tomcat/util/buf/LocalStrings.properties | 3 +-- java/org/apache/tomcat/util/buf/UDecoder.java | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/java/org/apache/tomcat/util/buf/LocalStrings.properties b/java/org/apache/tomcat/util/buf/LocalStrings.properties index 523cd2dc1b..52e8efd906 100644 --- a/java/org/apache/tomcat/util/buf/LocalStrings.properties +++ b/java/org/apache/tomcat/util/buf/LocalStrings.properties @@ -32,7 +32,6 @@ messageBytes.illegalCharacter=The Unicode character [{0}] at code point [{1}] ca uDecoder.eof=End of file (EOF) uDecoder.noSlash=The encoded slash character is not allowed uDecoder.urlDecode.conversionError=Failed to decode [{0}] using character set [{1}] +uDecoder.urlDecode.iae=It is practical to %nn decode a byte array since how the %nn is encoded will vary by character set uDecoder.urlDecode.missingDigit=Failed to decode [{0}] because the % character must be followed by two hexadecimal digits uDecoder.urlDecode.uee=Unable to URL decode the specified input since the encoding [{0}] is not supported. - -udecoder.urlDecode.iae=It is practical to %nn decode a byte array since how the %nn is encoded will vary by character set diff --git a/java/org/apache/tomcat/util/buf/UDecoder.java b/java/org/apache/tomcat/util/buf/UDecoder.java index bf738ed7f8..1c46a6f566 100644 --- a/java/org/apache/tomcat/util/buf/UDecoder.java +++ b/java/org/apache/tomcat/util/buf/UDecoder.java @@ -443,7 +443,7 @@ public final class UDecoder { */ @Deprecated public static String URLDecode(byte[] bytes, String enc, boolean isQuery) { - throw new IllegalArgumentException(sm.getString("udecoder.urlDecode.iae")); + throw new IllegalArgumentException(sm.getString("uDecoder.urlDecode.iae")); } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org