mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-11 04:26:03 +00:00
Add missing serialVersionUID from test
No compatibility issue since this is a test
This commit is contained in:
parent
be4e3f85d3
commit
e5041ec95c
@ -151,6 +151,8 @@ public class CompositeCollectionTest<E> extends AbstractCollectionTest<E> {
|
||||
public void testAddAllMutator() {
|
||||
setUpTest();
|
||||
c.setMutator(new CompositeCollection.CollectionMutator<E>() {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Override
|
||||
public boolean add(final CompositeCollection<E> composite,
|
||||
final List<Collection<E>> collections, final E obj) {
|
||||
@ -200,6 +202,8 @@ public class CompositeCollectionTest<E> extends AbstractCollectionTest<E> {
|
||||
public void testAddMutator() {
|
||||
setUpTest();
|
||||
c.setMutator(new CompositeCollection.CollectionMutator<E>() {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Override
|
||||
public boolean add(final CompositeCollection<E> composite,
|
||||
final List<Collection<E>> collections, final E obj) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user