mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2025-07-15 22:02:34 +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
|
import java.util.function.BiConsumer
|
||||||
|
|
||||||
class LargeCache<K, V> {
|
class LargeCache<K, V> {
|
||||||
val cache = ConcurrentSkipListMap<K, V>()
|
private val cache = ConcurrentSkipListMap<K, V>()
|
||||||
|
|
||||||
fun get(key: K) = cache.get(key)
|
fun get(key: K) = cache.get(key)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user