You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/04/30 15:37:36 UTC

svn commit: r1477627 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/MapBackedSet.java

Author: sebb
Date: Tue Apr 30 13:37:36 2013
New Revision: 1477627

URL: http://svn.apache.org/r1477627
Log:
Fields can be private

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/MapBackedSet.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/MapBackedSet.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/MapBackedSet.java?rev=1477627&r1=1477626&r2=1477627&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/MapBackedSet.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/MapBackedSet.java Tue Apr 30 13:37:36 2013
@@ -41,10 +41,10 @@ public final class MapBackedSet<E, V> im
     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.