Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 02db1b6c authored by Jesse Wilson's avatar Jesse Wilson
Browse files

Add a link from LruCache to the Android support package (compatibility library).

Change-Id: Ibd16410856cd8a0a991b4a403fedd9ac4e1ecaad
parent ac62c901
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -54,6 +54,10 @@ import java.util.Map;
 * <p>This class does not allow null to be used as a key or value. A return
 * value of null from {@link #get}, {@link #put} or {@link #remove} is
 * unambiguous: the key was not in the cache.
 *
 * <p>This class appeared in Android 3.1 (Honeycomb MR1); it's available as part
 * of <a href="http://developer.android.com/sdk/compatibility-library.html">Android's
 * Support Package</a> for earlier releases.
 */
public class LruCache<K, V> {
    private final LinkedHashMap<K, V> map;