mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-17 16:39:29 +00:00
Add serialVersionUID in LinkedCaseInsensitiveMap
Closes gh-35535 Signed-off-by: Yanming Zhou <zhouyanming@gmail.com>
This commit is contained in:
committed by
Sam Brannen
parent
e834a3a80c
commit
871076ef97
@@ -47,9 +47,10 @@ import org.jspecify.annotations.Nullable;
|
||||
* @since 3.0
|
||||
* @param <V> the value type
|
||||
*/
|
||||
@SuppressWarnings("serial")
|
||||
public class LinkedCaseInsensitiveMap<V> implements Map<String, V>, Serializable, Cloneable {
|
||||
|
||||
private static final long serialVersionUID = -1797561627545787622L;
|
||||
|
||||
private final LinkedHashMap<String, V> targetMap;
|
||||
|
||||
private final HashMap<String, String> caseInsensitiveKeys;
|
||||
|
||||
Reference in New Issue
Block a user