diff --git a/spring-web/src/main/java/org/springframework/web/bind/annotation/PathVariable.java b/spring-web/src/main/java/org/springframework/web/bind/annotation/PathVariable.java index d07619f76bb0..7485e10d9647 100644 --- a/spring-web/src/main/java/org/springframework/web/bind/annotation/PathVariable.java +++ b/spring-web/src/main/java/org/springframework/web/bind/annotation/PathVariable.java @@ -29,8 +29,7 @@ * variable. Supported for {@link RequestMapping} annotated handler methods in Servlet * environments. * - *
If the method parameter is {@link java.util.Map Map<String, String>} or - * {@link org.springframework.util.MultiValueMap MultiValueMap<String, String>} + *
If the method parameter is {@link java.util.Map Map<String, String>} * then the map is populated with all path variable names and values. * * @author Arjen Poutsma