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;
|
||||
|
||||
/** SetMutator to handle changes to the collection */
|
||||
protected SetMutator<E> mutator;
|
||||
private SetMutator<E> mutator;
|
||||
|
||||
/** 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.
|
||||
|
|
Loading…
Reference in New Issue