commit | 4e3084cdb889736a1eb632d407a9357c140c28ba | [log] [tgz] |
---|---|---|
author | Aleksei.Cherepanov <aleksei.cherepanov@jetbrains.com> | Thu Oct 12 12:53:24 2023 +0200 |
committer | Aleksei.Cherepanov <aleksei.cherepanov@jetbrains.com> | Thu Oct 12 12:53:24 2023 +0200 |
tree | d15805d24d6a96d8e7b1685a99399ad9a755a5c3 | |
parent | 8af0c89d38fd83c7bba428d8bb5c1db98e1d424a [diff] |
Disable flush
diff --git a/build-common/src/org/jetbrains/kotlin/incremental/storage/BasicMap.kt b/build-common/src/org/jetbrains/kotlin/incremental/storage/BasicMap.kt index 6bf77b4..af8aad6 100644 --- a/build-common/src/org/jetbrains/kotlin/incremental/storage/BasicMap.kt +++ b/build-common/src/org/jetbrains/kotlin/incremental/storage/BasicMap.kt
@@ -39,7 +39,7 @@ * - There is currently no good use case for flushing. In fact, the current implementation of this method does nothing. */ fun flush(memoryCachesOnly: Boolean) { - check(!memoryCachesOnly) { "Expected memoryCachesOnly = false but it is `true`" } +// check(!memoryCachesOnly) { "Expected memoryCachesOnly = false but it is `true`" } } /**