You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2015/04/07 14:48:37 UTC

svn commit: r1671835 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/LRUMap.java

Author: tn
Date: Tue Apr  7 12:48:37 2015
New Revision: 1671835

URL: http://svn.apache.org/r1671835
Log:
Add missing Since tag.

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/LRUMap.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/LRUMap.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/LRUMap.java?rev=1671835&r1=1671834&r2=1671835&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/LRUMap.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/LRUMap.java Tue Apr  7 12:48:37 2015
@@ -187,6 +187,7 @@ public class LRUMap<K, V>
      * @param updateToMRU  whether the key shall be updated to the
      *   most recently used position
      * @return the mapped value, null if no match
+     * @since 4.1
      */
     public V get(final Object key, final boolean updateToMRU) {
         final LinkEntry<K, V> entry = getEntry(key);