match javadoc definition of protected

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1005823 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Donald Woods 2010-10-08 13:50:12 +00:00
parent 643c87437b
commit 854325d119
1 changed files with 2 additions and 1 deletions

View File

@ -57,7 +57,8 @@ public abstract class AbstractCachedEMFTestCase extends AbstractPersistenceTestC
private static class FixedMap<K, V> extends LinkedHashMap<K, V> {
private static final long serialVersionUID = -3153852097468390779L;
public boolean removeEldestEntry(Map.Entry<K, V> entry) {
@Override
protected boolean removeEldestEntry(Map.Entry entry) {
return this.size() > 2;
}
}