Fields can be private

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1477627 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2013-04-30 13:37:36 +00:00
parent d5b16405c7
commit d3aa5b7742
1 changed files with 2 additions and 2 deletions

View File

@ -41,10 +41,10 @@ public final class MapBackedSet<E, V> implements Set<E>, Serializable {
private static final long serialVersionUID = 6723912213766056587L;
/** The map being used as the backing store */
protected final Map<E, ? super V> map;
private final Map<E, ? super V> map;
/** The dummyValue to use */
protected final V dummyValue;
private final V dummyValue;
/**
* Factory method to create a set from a map.