From c9e13d448a653f0ab995df3c2272454036869306 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Thu, 2 Apr 2020 16:28:26 +0200 Subject: [PATCH] Revert change to PathPattern Javadoc --- .../java/org/springframework/web/util/pattern/PathPattern.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-web/src/main/java/org/springframework/web/util/pattern/PathPattern.java b/spring-web/src/main/java/org/springframework/web/util/pattern/PathPattern.java index 9b02cab97d..de6f0f77e0 100644 --- a/spring-web/src/main/java/org/springframework/web/util/pattern/PathPattern.java +++ b/spring-web/src/main/java/org/springframework/web/util/pattern/PathPattern.java @@ -62,7 +62,7 @@ import org.springframework.util.StringUtils; * "path" → "/image.png", and {@code /resources/css/spring.css} will match * with "path" → "/css/spring.css" *
  • /resources/{filename:\\w+}.dat will match {@code /resources/spring.dat} - * and assign the value {@code "filename"} to the {@code filename} variable
  • + * and assign the value {@code "spring"} to the {@code filename} variable * * * @author Andy Clement