docs: Correct API usage of fingerprints

This commit is contained in:
oSumAtrIX 2025-03-10 13:52:09 +01:00 committed by GitHub
parent 509ecc81e1
commit d80abbcd17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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")
}
}
```