Field can be private

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

View File

@ -83,7 +83,7 @@ public class ListOrderedMap<K, V>
private static final long serialVersionUID = 2728177751851003750L;
/** Internal list to hold the sequence of objects */
protected final List<K> insertOrder = new ArrayList<K>();
private final List<K> insertOrder = new ArrayList<K>();
/**
* Factory method to create an ordered map.