diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-05-05 00:28:59 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-05-05 00:30:54 +0530 |
commit | a188ad3f724f2072020ad3985de9db30b0bf3e83 (patch) | |
tree | 1165e28a14d326515b87faa5ed9bde4e604487b0 /ssh | |
parent | def9786736cd1ae7ac887c696a0cb2aaf36aa79a (diff) |
chore: remove redundant suppressions
Diffstat (limited to 'ssh')
-rw-r--r-- | ssh/src/main/kotlin/app/passwordstore/ssh/utils/SSHKeyUtils.kt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ssh/src/main/kotlin/app/passwordstore/ssh/utils/SSHKeyUtils.kt b/ssh/src/main/kotlin/app/passwordstore/ssh/utils/SSHKeyUtils.kt index 86ce478e..d192ea21 100644 --- a/ssh/src/main/kotlin/app/passwordstore/ssh/utils/SSHKeyUtils.kt +++ b/ssh/src/main/kotlin/app/passwordstore/ssh/utils/SSHKeyUtils.kt @@ -17,7 +17,6 @@ internal object SSHKeyUtils { Regex("END .* PRIVATE KEY").containsMatchIn(lines.last()) } - @Suppress("BlockingMethodInNonBlockingContext") suspend fun getOrCreateWrappedPrivateKeyFile( context: Context, requiresAuthentication: Boolean, @@ -36,7 +35,6 @@ internal object SSHKeyUtils { } } - @Suppress("BlockingMethodInNonBlockingContext") private suspend fun getOrCreateWrappingMasterKey( context: Context, requireAuthentication: Boolean |