mirror of https://github.com/apache/openjpa.git
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:
parent
643c87437b
commit
854325d119
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue