From 081a5a6849cc2c95134febc2d2f5ed714b9c1288 Mon Sep 17 00:00:00 2001 From: Lucaskyy Date: Sun, 26 Jun 2022 16:21:55 +0200 Subject: [PATCH] refactor: fmt ExampleBytecodePatch.kt --- .../patcher/usage/bytecode/patch/ExampleBytecodePatch.kt | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/test/kotlin/app/revanced/patcher/usage/bytecode/patch/ExampleBytecodePatch.kt b/src/test/kotlin/app/revanced/patcher/usage/bytecode/patch/ExampleBytecodePatch.kt index 70ebf89..b4351bb 100644 --- a/src/test/kotlin/app/revanced/patcher/usage/bytecode/patch/ExampleBytecodePatch.kt +++ b/src/test/kotlin/app/revanced/patcher/usage/bytecode/patch/ExampleBytecodePatch.kt @@ -36,12 +36,7 @@ import org.jf.dexlib2.util.Preconditions @Description("Example demonstration of a bytecode patch.") @ExampleResourceCompatibility @Version("0.0.1") -class ExampleBytecodePatch : BytecodePatch( - - listOf( - ExampleFingerprint - ) -) { +class ExampleBytecodePatch : BytecodePatch(listOf(ExampleFingerprint)) { // This function will be executed by the patcher. // You can treat it as a constructor override fun execute(data: BytecodeData): PatchResult {