From c9050607bc50ebd58f238511a3c283117f16003d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deleuze?= <141109+sdeleuze@users.noreply.github.com> Date: Thu, 13 Mar 2025 12:57:44 +0100 Subject: [PATCH] Fix StringUtils#uriDecode Javadoc Closes gh-34590 --- .../src/main/java/org/springframework/util/StringUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-core/src/main/java/org/springframework/util/StringUtils.java b/spring-core/src/main/java/org/springframework/util/StringUtils.java index deed77ff405..f785767a784 100644 --- a/spring-core/src/main/java/org/springframework/util/StringUtils.java +++ b/spring-core/src/main/java/org/springframework/util/StringUtils.java @@ -808,7 +808,7 @@ public abstract class StringUtils { *
  • Alphanumeric characters {@code "a"} through {@code "z"}, {@code "A"} through {@code "Z"}, * and {@code "0"} through {@code "9"} stay the same.
  • *
  • Special characters {@code "-"}, {@code "_"}, {@code "."}, and {@code "*"} stay the same.
  • - *
  • A sequence "{@code %xy}" is interpreted as a hexadecimal representation of the character.
  • + *
  • A sequence "{@code %xy}" is interpreted as a hexadecimal representation of the character.
  • *
  • For all other characters (including those already decoded), the output is undefined.
  • * * @param source the encoded String