All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.frostwire.jlibtorrent.LruCache Maven / Gradle / Ivy

There is a newer version: 1.2.0.18
Show newest version
package com.frostwire.jlibtorrent;

import java.util.LinkedHashMap;
import java.util.Map;

/**
 * @author gubatron
 * @author aldenml
 */
final class LruCache extends LinkedHashMap {

    private final int maxSize;

    public LruCache(int maxSize) {
        this.maxSize = maxSize;
    }

    @Override
    protected boolean removeEldestEntry(Map.Entry eldest) {
        return size() > maxSize;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy