From 932971017832fb6a514a262b8efc4200e1bff830 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 18:15:11 +0000 Subject: fix(deps): update dependency com.facebook:ktfmt to v0.45 (#2687) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Harsh Shandilya --- ssh/src/main/kotlin/app/passwordstore/ssh/SSHKeyManager.kt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'ssh/src/main') diff --git a/ssh/src/main/kotlin/app/passwordstore/ssh/SSHKeyManager.kt b/ssh/src/main/kotlin/app/passwordstore/ssh/SSHKeyManager.kt index f30249c1..e90eedee 100644 --- a/ssh/src/main/kotlin/app/passwordstore/ssh/SSHKeyManager.kt +++ b/ssh/src/main/kotlin/app/passwordstore/ssh/SSHKeyManager.kt @@ -61,8 +61,7 @@ public class SSHKeyManager(private val applicationContext: Context) { private fun keyType(): SSHKeyType { return SSHKeyType.fromValue( applicationContext.sharedPrefs.getString(Constants.GIT_REMOTE_KEY_TYPE, null) - ) - ?: throw NullKeyException() + ) ?: throw NullKeyException() } public fun keyExists(): Boolean { @@ -121,8 +120,7 @@ public class SSHKeyManager(private val applicationContext: Context) { // Cursor returns only a single row. cursor.moveToFirst() cursor.getInt(0) - } - ?: throw IOException(applicationContext.getString(R.string.ssh_key_does_not_exist)) + } ?: throw IOException(applicationContext.getString(R.string.ssh_key_does_not_exist)) // We assume that an SSH key's ideal size is > 0 bytes && < 100 kilobytes. require(fileSize in 1 until SSH_KEY_MAX_FILE_SIZE) { applicationContext.getString(R.string.ssh_key_import_error_not_an_ssh_key_message) -- cgit v1.2.3