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:
Sebastian Bazley 2013-04-30 13:35:22 +00:00
parent b236d5259f
commit 8fe95aaec2
1 changed files with 2 additions and 2 deletions

View File

@ -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.