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:25:01 UTC

svn commit: r1477619 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/Flat3Map.java

Author: sebb
Date: Tue Apr 30 13:25:01 2013
New Revision: 1477619

URL: http://svn.apache.org/r1477619
Log:
Field can be private

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/Flat3Map.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/Flat3Map.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/Flat3Map.java?rev=1477619&r1=1477618&r2=1477619&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/Flat3Map.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/Flat3Map.java Tue Apr 30 13:25:01 2013
@@ -884,7 +884,7 @@ public class Flat3Map<K, V> implements I
     static abstract class EntryIterator<K, V> {
         private final Flat3Map<K, V> parent;
         private int nextIndex = 0;
-        protected FlatMapEntry<K, V> currentEntry = null;
+        private FlatMapEntry<K, V> currentEntry = null;
 
         /**
          * Create a new Flat3Map.EntryIterator.