Add missing Since tag.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1671835 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2015-04-07 12:48:37 +00:00
parent df22e0c5d2
commit ccad4919ac

View File

@ -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);