You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2010/01/27 16:22:30 UTC

svn commit: r903672 - /commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/utils/InMemoryLRUCache.java

Author: sebb
Date: Wed Jan 27 15:22:30 2010
New Revision: 903672

URL: http://svn.apache.org/viewvc?rev=903672&view=rev
Log:
Add missing @Override marker

Modified:
    commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/utils/InMemoryLRUCache.java

Modified: commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/utils/InMemoryLRUCache.java
URL: http://svn.apache.org/viewvc/commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/utils/InMemoryLRUCache.java?rev=903672&r1=903671&r2=903672&view=diff
==============================================================================
--- commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/utils/InMemoryLRUCache.java (original)
+++ commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/utils/InMemoryLRUCache.java Wed Jan 27 15:22:30 2010
@@ -54,6 +54,7 @@
         /**
          * {@inheritDoc}
          */
+        @Override
         protected boolean removeEldestEntry(Map.Entry<K,V> eldest) {
             return size() > CACHE_SIZE;
         }