From d80abbcd17dce1b513afcb52ff716d8a10f95c65 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Mon, 10 Mar 2025 13:52:09 +0100 Subject: [PATCH] docs: Correct API usage of fingerprints --- docs/2_2_patch_anatomy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/2_2_patch_anatomy.md b/docs/2_2_patch_anatomy.md index a24eb19..33f737c 100644 --- a/docs/2_2_patch_anatomy.md +++ b/docs/2_2_patch_anatomy.md @@ -185,7 +185,7 @@ val patch = bytecodePatch(name = "Complex patch") { extendWith("complex-patch.rve") execute { - fingerprint.match!!.mutableMethod.addInstructions(0, "invoke-static { }, LComplexPatch;->doSomething()V") + fingerprint.method.addInstructions(0, "invoke-static { }, LComplexPatch;->doSomething()V") } } ```