From ff9f25ccdb6b3681e9d2c0b5fb18d1a9bde7d73e Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Thu, 26 Sep 2024 14:42:40 -0400 Subject: [PATCH] Removes unnecessary log --- .../main/java/com/vitorpamplona/amethyst/model/LocalCache.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/model/LocalCache.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/model/LocalCache.kt index dd32d0ecf..1e38d1de3 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/model/LocalCache.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/model/LocalCache.kt @@ -1094,9 +1094,7 @@ object LocalCache { if (version.event?.id() == event.id()) return // makes sure the OTS has a valid certificate - val verif = event.cacheVerify() - Log.d("AABBCC", "" + verif) - if (verif is VerificationState.Error) return // no valid OTS + if (event.cacheVerify() is VerificationState.Error) return // no valid OTS if (version.event == null) { version.loadEvent(event, author, emptyList())