Browse Source

Fix StringUtils#uriDecode Javadoc

Closes gh-34590
pull/34656/head
Sébastien Deleuze 9 months ago
parent
commit
c9050607bc
  1. 2
      spring-core/src/main/java/org/springframework/util/StringUtils.java

2
spring-core/src/main/java/org/springframework/util/StringUtils.java

@ -808,7 +808,7 @@ public abstract class StringUtils { @@ -808,7 +808,7 @@ public abstract class StringUtils {
* <li>Alphanumeric characters {@code "a"} through {@code "z"}, {@code "A"} through {@code "Z"},
* and {@code "0"} through {@code "9"} stay the same.</li>
* <li>Special characters {@code "-"}, {@code "_"}, {@code "."}, and {@code "*"} stay the same.</li>
* <li>A sequence "{@code %<i>xy</i>}" is interpreted as a hexadecimal representation of the character.</li>
* <li>A sequence "<i>{@code %xy}</i>" is interpreted as a hexadecimal representation of the character.</li>
* <li>For all other characters (including those already decoded), the output is undefined.</li>
* </ul>
* @param source the encoded String

Loading…
Cancel
Save