Skip to content

Commit e255434

Browse files
committed
Polishing
1 parent 84cf5fc commit e255434

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
*
3838
* @author Juergen Hoeller
3939
* @since 3.0
40+
* @param <V> the value type
4041
*/
4142
@SuppressWarnings("serial")
4243
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
@@ -26,6 +26,8 @@
2626
*
2727
* @author Arjen Poutsma
2828
* @since 3.0
29+
* @param <K> the key type
30+
* @param <V> the value element type
2931
*/
3032
public interface MultiValueMap<K, V> extends Map<K, List<V>> {
3133

0 commit comments

Comments
 (0)