[COLLECTIONS-327] added serialVersionUID.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1023281 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
24264d13ed
commit
9976cbe48d
|
@ -45,6 +45,9 @@ import org.apache.commons.collections.list.UnmodifiableList;
|
|||
*/
|
||||
public class CompositeCollection<E> implements Collection<E>, Serializable {
|
||||
|
||||
/** Serialization version */
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** CollectionMutator to handle changes to the collection */
|
||||
protected CollectionMutator<E> mutator;
|
||||
|
||||
|
|
|
@ -37,6 +37,9 @@ import org.apache.commons.collections.collection.CompositeCollection;
|
|||
*/
|
||||
public class CompositeSet<E> extends CompositeCollection<E> implements Set<E> {
|
||||
|
||||
/** Serialization version */
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Create an empty CompositeSet
|
||||
*/
|
||||
|
|
|
@ -25,6 +25,9 @@ import java.util.Collection;
|
|||
* class also has to be serialized.
|
||||
*/
|
||||
class EmptyMapMutator implements CompositeMap.MapMutator {
|
||||
/** Serialization version */
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public void resolveCollision(CompositeMap composite,
|
||||
Map existing,
|
||||
Map added,
|
||||
|
|
|
@ -28,6 +28,10 @@ import org.apache.commons.collections.collection.CompositeCollection;
|
|||
* class also has to be serialized.
|
||||
*/
|
||||
class EmptySetMutator<E> implements CompositeSet.SetMutator<E> {
|
||||
|
||||
/** Serialization version */
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private Set<E> contained;
|
||||
|
||||
public EmptySetMutator(Set<E> set) {
|
||||
|
|
Loading…
Reference in New Issue