diff --git a/org.springframework.core/src/main/java/org/springframework/util/LinkedMultiValueMap.java b/org.springframework.core/src/main/java/org/springframework/util/LinkedMultiValueMap.java index 1fb2466b33..e237689ef6 100644 --- a/org.springframework.core/src/main/java/org/springframework/util/LinkedMultiValueMap.java +++ b/org.springframework.core/src/main/java/org/springframework/util/LinkedMultiValueMap.java @@ -29,7 +29,6 @@ import java.util.Set; * *

This Map implementation is generally not thread-safe. It is primarily designed * for data structures exposed from request objects, for use in a single thread only. - * * @author Arjen Poutsma * @author Juergen Hoeller * @since 3.0 @@ -38,10 +37,8 @@ public class LinkedMultiValueMap implements MultiValueMap { private final Map> targetMap; - /** - * Create a new SimpleMultiValueMap that wraps the given target Map. - * @param wrappee the target Map to wrap + * Create a new SimpleMultiValueMap that wraps a newly created {@link LinkedHashMap}. */ public LinkedMultiValueMap() { this.targetMap = new LinkedHashMap>(); @@ -81,7 +78,6 @@ public class LinkedMultiValueMap implements MultiValueMap { this.targetMap.put(key, values); } - // Map implementation public int size() {