From ad63a534cb19dfc45ddaa6af5c99b87b1745c2df Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Fri, 4 Jun 2021 15:14:42 +0200 Subject: [PATCH] Polish @CookieValue Javadoc --- .../org/springframework/web/bind/annotation/CookieValue.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spring-web/src/main/java/org/springframework/web/bind/annotation/CookieValue.java b/spring-web/src/main/java/org/springframework/web/bind/annotation/CookieValue.java index 134588660e..33e23a166a 100644 --- a/spring-web/src/main/java/org/springframework/web/bind/annotation/CookieValue.java +++ b/spring-web/src/main/java/org/springframework/web/bind/annotation/CookieValue.java @@ -31,8 +31,9 @@ import org.springframework.core.annotation.AliasFor; * or as cookie value type (String, int, etc.). * *

Note that with spring-webmvc 5.3.x and earlier, the cookie value is URL - * decoded. This will be changed in 6.0 but in the mean, applications can also - * declare {@link javax.servlet.http.Cookie} to access the raw value. + * decoded. This will be changed in 6.0 but in the meantime, applications can + * also declare parameters of type {@link javax.servlet.http.Cookie} to access + * the raw value. * * @author Juergen Hoeller * @author Sam Brannen