Add serialVersionUID in LinkedCaseInsensitiveMap

Closes gh-35535

Signed-off-by: Yanming Zhou <zhouyanming@gmail.com>
This commit is contained in:
Yanming Zhou 2025-09-24 17:19:18 +08:00 committed by Sam Brannen
parent e834a3a80c
commit 871076ef97
1 changed files with 2 additions and 1 deletions

View File

@ -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;