Skip to content

Commit f8eb0fb

Browse files
committed
Polishing
1 parent d777c73 commit f8eb0fb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

spring-core/src/main/java/org/springframework/util/LinkedCaseInsensitiveMap.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2017 the original author or authors.
2+
* Copyright 2002-2018 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -35,6 +35,7 @@
3535
*
3636
* @author Juergen Hoeller
3737
* @since 3.0
38+
* @param <V> the value type
3839
*/
3940
@SuppressWarnings("serial")
4041
public class LinkedCaseInsensitiveMap<V> implements Map<String, V>, Serializable, Cloneable {

spring-core/src/main/java/org/springframework/util/MultiValueMap.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
*
2525
* @author Arjen Poutsma
2626
* @since 3.0
27+
* @param <K> the key type
28+
* @param <V> the value element type
2729
*/
2830
public interface MultiValueMap<K, V> extends Map<K, List<V>> {
2931

0 commit comments

Comments
 (0)