This commit is contained in:
Arjen Poutsma 2009-02-24 12:36:22 +00:00
parent c46b0ae271
commit e35201fc78
1 changed files with 1 additions and 5 deletions

View File

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