mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2025-07-12 15:42:21 +02:00
LargeCache inner map should be private
This commit is contained in:
@ -24,7 +24,7 @@ import java.util.concurrent.ConcurrentSkipListMap
|
||||
import java.util.function.BiConsumer
|
||||
|
||||
class LargeCache<K, V> {
|
||||
val cache = ConcurrentSkipListMap<K, V>()
|
||||
private val cache = ConcurrentSkipListMap<K, V>()
|
||||
|
||||
fun get(key: K) = cache.get(key)
|
||||
|
||||
|
Reference in New Issue
Block a user