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:
parent
d5b16405c7
commit
d3aa5b7742
|
@ -41,10 +41,10 @@ public final class MapBackedSet<E, V> implements Set<E>, Serializable {
|
||||||
private static final long serialVersionUID = 6723912213766056587L;
|
private static final long serialVersionUID = 6723912213766056587L;
|
||||||
|
|
||||||
/** The map being used as the backing store */
|
/** 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 */
|
/** The dummyValue to use */
|
||||||
protected final V dummyValue;
|
private final V dummyValue;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Factory method to create a set from a map.
|
* Factory method to create a set from a map.
|
||||||
|
|
Loading…
Reference in New Issue