From 31a05b6768ab845fb71d14347ce4cc79403f9b6e Mon Sep 17 00:00:00 2001 From: Aunali321 <48486084+Aunali321@users.noreply.github.com> Date: Sun, 3 Jul 2022 19:20:12 +0530 Subject: [PATCH] refactor: comment for `unmount` step (#74) --- src/main/kotlin/app/revanced/utils/adb/Adb.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/app/revanced/utils/adb/Adb.kt b/src/main/kotlin/app/revanced/utils/adb/Adb.kt index a66e3524..cc2f2881 100644 --- a/src/main/kotlin/app/revanced/utils/adb/Adb.kt +++ b/src/main/kotlin/app/revanced/utils/adb/Adb.kt @@ -58,7 +58,7 @@ internal class Adb( Constants.PATH_INIT_PUSH, Constants.CONTENT_UMOUNT_SCRIPT.replacePlaceholder() ) - // install mount script + // install unmount script device.run(Constants.COMMAND_INSTALL_UMOUNT.replacePlaceholder()) // unmount the apk for sanity @@ -103,4 +103,4 @@ internal class Adb( process.destroy() executor.shutdown() } -} \ No newline at end of file +}