Field can be private

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

View File

@ -208,7 +208,7 @@ public class LinkedMap<K, V> extends AbstractLinkedMap<K, V> implements Serializ
*/
static class LinkedMapList<K> extends AbstractList<K> {
final LinkedMap<K, ?> parent;
private final LinkedMap<K, ?> parent;
LinkedMapList(final LinkedMap<K, ?> parent) {
this.parent = parent;