Skip to content

Commit 5df0821

Browse files
committed
Polish contribution
See gh-35535
1 parent 871076e commit 5df0821

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
package org.springframework.util;
1818

19+
import java.io.Serial;
1920
import java.io.Serializable;
2021
import java.util.AbstractCollection;
2122
import java.util.AbstractSet;
@@ -49,8 +50,10 @@
4950
*/
5051
public class LinkedCaseInsensitiveMap<V> implements Map<String, V>, Serializable, Cloneable {
5152

53+
@Serial
5254
private static final long serialVersionUID = -1797561627545787622L;
5355

56+
5457
private final LinkedHashMap<String, V> targetMap;
5558

5659
private final HashMap<String, String> caseInsensitiveKeys;

0 commit comments

Comments
 (0)