Browse Source

Javadoc

conversation
Arjen Poutsma 16 years ago
parent
commit
e35201fc78
  1. 6
      org.springframework.core/src/main/java/org/springframework/util/LinkedMultiValueMap.java

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

@ -29,7 +29,6 @@ import java.util.Set; @@ -29,7 +29,6 @@ import java.util.Set;
*
* <p>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<K, V> implements MultiValueMap<K, V> { @@ -38,10 +37,8 @@ public class LinkedMultiValueMap<K, V> implements MultiValueMap<K, V> {
private final Map<K, List<V>> 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<K, List<V>>();
@ -81,7 +78,6 @@ public class LinkedMultiValueMap<K, V> implements MultiValueMap<K, V> { @@ -81,7 +78,6 @@ public class LinkedMultiValueMap<K, V> implements MultiValueMap<K, V> {
this.targetMap.put(key, values);
}
// Map implementation
public int size() {

Loading…
Cancel
Save