LruCache internal
This commit is contained in:
parent
e56ed96fdb
commit
96844cd526
@ -3,7 +3,7 @@ package centre.sciprog.maps
|
||||
import kotlin.jvm.Synchronized
|
||||
|
||||
|
||||
class LruCache<K, V>(
|
||||
internal class LruCache<K, V>(
|
||||
private var capacity: Int,
|
||||
) {
|
||||
private val cache = linkedMapOf<K, V>()
|
||||
|
Loading…
Reference in New Issue
Block a user