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:
parent
ff21663c8e
commit
22421b80fd
|
@ -31,6 +31,10 @@ import java.io.Serializable;
|
|||
public class SerializablePair<K extends Serializable, V extends Serializable>
|
||||
extends Pair<K, V>
|
||||
implements Serializable {
|
||||
|
||||
/** serializable UID. */
|
||||
private static final long serialVersionUID = 1573515225013398712L;
|
||||
|
||||
/**
|
||||
* Create an entry representing a mapping from the specified key to the
|
||||
* specified value.
|
||||
|
|
Loading…
Reference in New Issue