From 48a1a39b94dd9121c400d28e3e93dec3fc13e3be Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Mon, 11 Mar 2024 09:22:19 +0100 Subject: [PATCH] feat: Remove deprecated CLI options --- .../kotlin/app/revanced/cli/command/PatchCommand.kt | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt b/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt index d5c7c80..e77fb11 100644 --- a/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt +++ b/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt @@ -142,17 +142,6 @@ internal object PatchCommand : Runnable { ) private var signer = "ReVanced" - @CommandLine.Option( - names = ["-r", "--resource-cache"], - description = ["Path to temporary resource cache directory."], - ) - private var resourceCachePath: File? = null - set(value) { - logger.warning("The --resource-cache option is deprecated. Use --temporary-files-patch instead.") - field = value - temporaryFilesPath = value - } - @CommandLine.Option( names = ["-t", "--temporary-files-path"], description = ["Path to temporary files directory."],