added missing serialVersionUID

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1084597 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2011-03-23 14:22:19 +00:00
parent ff21663c8e
commit 22421b80fd

View File

@ -31,6 +31,10 @@ import java.io.Serializable;
public class SerializablePair<K extends Serializable, V extends Serializable> public class SerializablePair<K extends Serializable, V extends Serializable>
extends Pair<K, V> extends Pair<K, V>
implements Serializable { implements Serializable {
/** serializable UID. */
private static final long serialVersionUID = 1573515225013398712L;
/** /**
* Create an entry representing a mapping from the specified key to the * Create an entry representing a mapping from the specified key to the
* specified value. * specified value.