8036568: Serial incompatibility in java.util.TreeMap.NavigableSubMap
Reviewed-by: smarks
--- a/jdk/src/share/classes/java/util/TreeMap.java Tue Mar 04 15:33:30 2014 -0800
+++ b/jdk/src/share/classes/java/util/TreeMap.java Tue Mar 04 18:28:56 2014 -0800
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -1335,6 +1335,7 @@
*/
abstract static class NavigableSubMap<K,V> extends AbstractMap<K,V>
implements NavigableMap<K,V>, java.io.Serializable {
+ private static final long serialVersionUID = -2102997345730753016L;
/**
* The backing map.
*/