Detekt: enable rule exceptions.SwallowedException and fix existing issue.

This commit is contained in:
Benoit Marty
2025-12-05 09:45:23 +01:00
parent a9afa59053
commit 72b3decf4c
16 changed files with 20 additions and 20 deletions

View File

@@ -21,7 +21,7 @@ fun String.md5() = try {
digest.digest()
.joinToString("") { String.format(locale, "%02X", it) }
.lowercase(locale)
} catch (exc: Exception) {
} catch (_: Exception) {
// Should not happen, but just in case
hashCode().toString()
}

View File

@@ -14,7 +14,7 @@ fun String.isValidUrl(): Boolean {
return try {
URI(this).toURL()
true
} catch (t: Throwable) {
} catch (_: Throwable) {
false
}
}