mirror of
https://github.com/ReVanced/revanced-patches.git
synced 2024-11-13 02:14:28 +01:00
fix: missing brackets at inlining
This commit is contained in:
parent
a8f17948ac
commit
8936c8aaed
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ class CreateButtonRemoverPatch : BytecodePatch(
|
||||||
// Hide the button view via proxy by passing it to the hideCreateButton method
|
// Hide the button view via proxy by passing it to the hideCreateButton method
|
||||||
result.method.addInstruction(
|
result.method.addInstruction(
|
||||||
result.scanResult.endIndex + 1,
|
result.scanResult.endIndex + 1,
|
||||||
"invoke-static { v$moveResultInstruction.registerA }, Lapp/revanced/integrations/patches/HideCreateButtonPatch;->hideCreateButton(Landroid/view/View;)V"
|
"invoke-static { v${moveResultInstruction.registerA} }, Lapp/revanced/integrations/patches/HideCreateButtonPatch;->hideCreateButton(Landroid/view/View;)V"
|
||||||
)
|
)
|
||||||
|
|
||||||
return PatchResultSuccess()
|
return PatchResultSuccess()
|
||||||
|
|
Loading…
Reference in a new issue