Polishing

This commit is contained in:
Juergen Hoeller
2019-05-07 14:02:31 +02:00
parent 84cf5fc200
commit e255434ca5
2 changed files with 3 additions and 0 deletions

View File

@@ -37,6 +37,7 @@ import org.springframework.lang.Nullable;
*
* @author Juergen Hoeller
* @since 3.0
* @param <V> the value type
*/
@SuppressWarnings("serial")
public class LinkedCaseInsensitiveMap<V> implements Map<String, V>, Serializable, Cloneable {

View File

@@ -26,6 +26,8 @@ import org.springframework.lang.Nullable;
*
* @author Arjen Poutsma
* @since 3.0
* @param <K> the key type
* @param <V> the value element type
*/
public interface MultiValueMap<K, V> extends Map<K, List<V>> {