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`" }
     }
 
     /**