commit | a188fe0651412339ee3f903fc7d0aea29ee9c445 | [log] [tgz] |
---|---|---|
author | Denis.Zharkov <denis.zharkov@jetbrains.com> | Thu Dec 15 18:17:36 2022 +0100 |
committer | Denis.Zharkov <denis.zharkov@jetbrains.com> | Thu Dec 15 18:17:54 2022 +0100 |
tree | 182b275031279d4581d918d1c51c226a590d16c5 | |
parent | 7b1a12c013a5dfbcc6f67c1cbec6a7ad69410712 [diff] |
~ tuned hash map
diff --git a/compiler/fir/tree/src/org/jetbrains/kotlin/fir/caches/NullableMap.kt b/compiler/fir/tree/src/org/jetbrains/kotlin/fir/caches/NullableMap.kt index b12394a3..10b519b 100644 --- a/compiler/fir/tree/src/org/jetbrains/kotlin/fir/caches/NullableMap.kt +++ b/compiler/fir/tree/src/org/jetbrains/kotlin/fir/caches/NullableMap.kt
@@ -14,7 +14,7 @@ @JvmInline value class NullableMap<K, V>( @property:PrivateForInline - val map: MutableMap<K, Any> = HashMap() + val map: MutableMap<K, Any> = HashMap(256, 0.5f) ) { /**