From a092eb6e544354c6e01a84b3d3c760f3e67a1057 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Tue, 13 Feb 2024 03:31:45 +0100 Subject: [PATCH] chore: Remove usages of deprecated APIs --- src/main/kotlin/your/org/patches/example/ExamplePatch.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/your/org/patches/example/ExamplePatch.kt b/src/main/kotlin/your/org/patches/example/ExamplePatch.kt index 6e8069f5f..ab99017e6 100644 --- a/src/main/kotlin/your/org/patches/example/ExamplePatch.kt +++ b/src/main/kotlin/your/org/patches/example/ExamplePatch.kt @@ -13,7 +13,7 @@ import app.revanced.patcher.patch.annotation.Patch ], ) @Suppress("unused") -object ExamplePatch : BytecodePatch() { +object ExamplePatch : BytecodePatch(emptySet()) { override fun execute(context: BytecodeContext) { // TODO("Not yet implemented") }