Ellena557 / LRU-cache

0 stars 0 forks source link

This is shame do not make this class to be Generic :) #9

Open irenkamalova opened 3 years ago

irenkamalova commented 3 years ago

https://github.com/Ellena557/LRU-cache/blob/e4baeccd54a7334dcc8cdeb33e95fe8e396a47a8/lru-cache/src/main/java/ru/ellen/LruCache.java#L5

public interface LruCache<K, V> {
    V put(K key, V value);

    V get(K key);
}
Ellena557 commented 3 years ago

Done