Skip to content

Commit e35201f

Browse files
committed
Javadoc
1 parent c46b0ae commit e35201f

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

org.springframework.core/src/main/java/org/springframework/util/LinkedMultiValueMap.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
*
3030
* <p>This Map implementation is generally not thread-safe. It is primarily designed
3131
* for data structures exposed from request objects, for use in a single thread only.
32-
*
3332
* @author Arjen Poutsma
3433
* @author Juergen Hoeller
3534
* @since 3.0
@@ -38,10 +37,8 @@ public class LinkedMultiValueMap<K, V> implements MultiValueMap<K, V> {
3837

3938
private final Map<K, List<V>> targetMap;
4039

41-
4240
/**
43-
* Create a new SimpleMultiValueMap that wraps the given target Map.
44-
* @param wrappee the target Map to wrap
41+
* Create a new SimpleMultiValueMap that wraps a newly created {@link LinkedHashMap}.
4542
*/
4643
public LinkedMultiValueMap() {
4744
this.targetMap = new LinkedHashMap<K, List<V>>();
@@ -81,7 +78,6 @@ public void set(K key, V value) {
8178
this.targetMap.put(key, values);
8279
}
8380

84-
8581
// Map implementation
8682

8783
public int size() {

0 commit comments

Comments
 (0)