From d640c397256b3c922976bfa71260dd3797922e01 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 1 Sep 2022 12:04:20 +0530 Subject: Fix reported Lint issues (#2101) --- app/src/main/java/app/passwordstore/util/git/sshj/SshKey.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/src/main/java') diff --git a/app/src/main/java/app/passwordstore/util/git/sshj/SshKey.kt b/app/src/main/java/app/passwordstore/util/git/sshj/SshKey.kt index bfdf5a51..bdced9af 100644 --- a/app/src/main/java/app/passwordstore/util/git/sshj/SshKey.kt +++ b/app/src/main/java/app/passwordstore/util/git/sshj/SshKey.kt @@ -205,7 +205,7 @@ object SshKey { val sshKeyInputStream = context.contentResolver.openInputStream(uri) ?: throw IOException(context.getString(R.string.ssh_key_does_not_exist)) - val lines = sshKeyInputStream.bufferedReader().readLines() + val lines = sshKeyInputStream.use { `is` -> `is`.bufferedReader().readLines() } // The file must have more than 2 lines, and the first and last line must have private key // markers. -- cgit v1.2.3