diff --git a/RELEASE-NOTES.html b/RELEASE-NOTES.html
index 8cc8a0ac2..8bf7a880f 100644
--- a/RELEASE-NOTES.html
+++ b/RELEASE-NOTES.html
@@ -26,18 +26,13 @@ No interface changes, or deprecations have occurred.
NEW CLASSES
- TransformedPredicate - A predicate where the input object is transformed [26946]
+- ObjectGraphIterator - An iterator that can iterate over a graph of objects
ENHANCEMENTS
- ReferenceMap - Changed to extend AbstractHashedMap, thus gaining a mapIterator() and subclassability
-- Fast3Map - Make Serializable [27946]
- Fast3Map - Add clone() method
-- FixedSizeMap - Make Serializable [18815]
-- FixedSizeSortedMap - Make Serializable [18815]
-- LazyMap - Make Serializable [18815]
-- LazySortedMap - Make Serializable [18815]
-- ListOrderedMap - Make Serializable [18815]
- MultiKey - Add getKey(index) and size() methods and make constructor public
- MultiHashMap - Add five methods to improve the API
- AbstractHashedMap,AbstractLinkedMap - Add methods to access entry methods when protected scope blocks
@@ -47,6 +42,18 @@ No interface changes, or deprecations have occurred.
- CollectionUtils - Add size(Object) method to find the size of various collection-like objects [27909]
+Made Serializable
+
+- Fast3Map [27946]
+- FixedSizeMap/SortedMap [18815]
+- LazyMap/SortedMap [18815]
+- ListOrderedMap [18815]
+- PredicatedMap/SortedMap [18815]
+- TransformedMap/SortedMap [18815]
+- UnmodifiableMap/SortedMap/OrderedMap [18815]
+- TiedMapEntry
+
+
BUG FIXES
- Map/BidiMap implementations only checked key and not value in entry set contains(Object) and remove(Object)
diff --git a/src/java/org/apache/commons/collections/keyvalue/TiedMapEntry.java b/src/java/org/apache/commons/collections/keyvalue/TiedMapEntry.java
index 68444cd62..662a9e58b 100644
--- a/src/java/org/apache/commons/collections/keyvalue/TiedMapEntry.java
+++ b/src/java/org/apache/commons/collections/keyvalue/TiedMapEntry.java
@@ -15,6 +15,7 @@
*/
package org.apache.commons.collections.keyvalue;
+import java.io.Serializable;
import java.util.Map;
import org.apache.commons.collections.KeyValue;
@@ -26,11 +27,14 @@ import org.apache.commons.collections.KeyValue;
* map, however this will probably mess up any iterators.
*
* @since Commons Collections 3.0
- * @version $Revision: 1.4 $ $Date: 2004/02/18 01:00:08 $
+ * @version $Revision: 1.5 $ $Date: 2004/04/09 14:35:10 $
*
* @author Stephen Colebourne
*/
-public class TiedMapEntry implements Map.Entry, KeyValue {
+public class TiedMapEntry implements Map.Entry, KeyValue, Serializable {
+
+ /** Serialization version */
+ private static final long serialVersionUID = -8453869361373831205L;
/** The map underlying the entry/iterator */
private final Map map;