From 0d552cfcd27e53e0a9fa510256d1c1924c5f00cb Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Thu, 15 Feb 2024 16:18:31 +0600 Subject: [PATCH] fix build --- .../micro_utils/repos/cache/full/FullKeyValuesCacheRepo.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/repos/cache/src/commonMain/kotlin/dev/inmo/micro_utils/repos/cache/full/FullKeyValuesCacheRepo.kt b/repos/cache/src/commonMain/kotlin/dev/inmo/micro_utils/repos/cache/full/FullKeyValuesCacheRepo.kt index e139256d539..2aae6cfc227 100644 --- a/repos/cache/src/commonMain/kotlin/dev/inmo/micro_utils/repos/cache/full/FullKeyValuesCacheRepo.kt +++ b/repos/cache/src/commonMain/kotlin/dev/inmo/micro_utils/repos/cache/full/FullKeyValuesCacheRepo.kt @@ -192,6 +192,10 @@ open class FullKeyValuesCacheRepo( } } + override suspend fun set(toSet: Map>) { + super.set(toSet) + } + override suspend fun removeWithValue(v: Value) { super.removeWithValue(v) }