mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-08 02:59:29 +00:00
Fields can be private
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1477625 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b236d5259f
commit
8fe95aaec2
@ -53,10 +53,10 @@ public class CompositeSet<E> implements Set<E>, Serializable {
|
|||||||
private static final long serialVersionUID = 5185069727540378940L;
|
private static final long serialVersionUID = 5185069727540378940L;
|
||||||
|
|
||||||
/** SetMutator to handle changes to the collection */
|
/** SetMutator to handle changes to the collection */
|
||||||
protected SetMutator<E> mutator;
|
private SetMutator<E> mutator;
|
||||||
|
|
||||||
/** Sets in the composite */
|
/** Sets in the composite */
|
||||||
protected List<Set<E>> all = new ArrayList<Set<E>>();
|
private final List<Set<E>> all = new ArrayList<Set<E>>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an empty CompositeSet.
|
* Create an empty CompositeSet.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user