Detekt: ignore EmptyCatchBlock
This commit is contained in:
parent
c19563bed2
commit
21904054a5
|
@ -79,7 +79,7 @@ internal class RoomDecryptorProvider @Inject constructor(
|
||||||
newSessionListeners.toList().forEach {
|
newSessionListeners.toList().forEach {
|
||||||
try {
|
try {
|
||||||
it.onNewSession(roomId, senderKey, sessionId)
|
it.onNewSession(roomId, senderKey, sessionId)
|
||||||
} catch (e: Throwable) {
|
} catch (ignore: Throwable) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,7 @@ internal class MigrateCryptoTo007(realm: DynamicRealm) : RealmMigrator(realm, 7)
|
||||||
val jsonSignatures = crossSigningKeysMapper.serializeSignatures(objectSignatures)
|
val jsonSignatures = crossSigningKeysMapper.serializeSignatures(objectSignatures)
|
||||||
it.setString(KeyInfoEntityFields.SIGNATURES, jsonSignatures)
|
it.setString(KeyInfoEntityFields.SIGNATURES, jsonSignatures)
|
||||||
}
|
}
|
||||||
} catch (failure: Throwable) {
|
} catch (ignore: Throwable) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Migrate frozen classes
|
// Migrate frozen classes
|
||||||
|
|
|
@ -215,7 +215,7 @@ class NotifiableEventResolver @Inject constructor(
|
||||||
keysClaimed = result.claimedEd25519Key?.let { mapOf("ed25519" to it) },
|
keysClaimed = result.claimedEd25519Key?.let { mapOf("ed25519" to it) },
|
||||||
forwardingCurve25519KeyChain = result.forwardingCurve25519KeyChain
|
forwardingCurve25519KeyChain = result.forwardingCurve25519KeyChain
|
||||||
)
|
)
|
||||||
} catch (e: MXCryptoError) {
|
} catch (ignore: MXCryptoError) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue