aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2024-09-28 23:35:54 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2024-09-28 23:35:54 +0530
commit5803f0244a5669b10f09b3f75fe3493143f0aff3 (patch)
tree7ad58e9dc3726afaafe7b1799819f2814013a8dd /app
parent7e1ed55ab7f4650ac0825e63bd7d2defd968faba (diff)
Reapply "refactor: use `Closeable#use` extension where applicable"
This reverts commit 04f4b9804f10e4724bac22d40bf01711ff708533.
Diffstat (limited to 'app')
-rw-r--r--app/src/main/java/app/passwordstore/util/services/PasswordExportService.kt5
1 files changed, 1 insertions, 4 deletions
diff --git a/app/src/main/java/app/passwordstore/util/services/PasswordExportService.kt b/app/src/main/java/app/passwordstore/util/services/PasswordExportService.kt
index 854071f2..c74c3f0e 100644
--- a/app/src/main/java/app/passwordstore/util/services/PasswordExportService.kt
+++ b/app/src/main/java/app/passwordstore/util/services/PasswordExportService.kt
@@ -89,10 +89,7 @@ class PasswordExportService : Service() {
val destOutputStream = contentResolver.openOutputStream(targetPasswordFile.uri)
if (destOutputStream != null && sourceInputStream != null) {
- sourceInputStream.copyTo(destOutputStream, 1024)
-
- sourceInputStream.close()
- destOutputStream.close()
+ sourceInputStream.use { source -> destOutputStream.use { dest -> source.copyTo(dest) } }
}
}
}