Field can be private

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1477619 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2013-04-30 13:25:01 +00:00
parent 8041ccfe10
commit cde8451d63

View File

@ -884,7 +884,7 @@ public class Flat3Map<K, V> implements IterableMap<K, V>, Serializable, Cloneabl
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.