File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
src/main/kotlin/app/revanced/patches/moneymanager Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -8,20 +8,20 @@ import app.revanced.patcher.patch.annotation.Patch
88import app.revanced.patches.moneymanager.fingerprints.UnlockProFingerprint
99
1010@Patch(
11- name = " Unlock pro" ,
12- compatiblePackages = [CompatiblePackage (" com.ithebk.expensemanager" )]
11+ compatiblePackages = [CompatiblePackage (" com.ithebk.expensemanager" )],
1312)
13+ @Deprecated(" This patch is not functional anymore and will be removed in the future." )
1414@Suppress(" unused" )
1515object UnlockProPatch : BytecodePatch(
16- setOf(UnlockProFingerprint )
17- ){
16+ setOf(UnlockProFingerprint ),
17+ ) {
1818 override fun execute (context : BytecodeContext ) {
19- UnlockProFingerprint .result!! .mutableMethod.addInstructions(
19+ UnlockProFingerprint .result!! .mutableMethod.addInstructions(
2020 0 ,
2121 """
2222 const/4 v0, 0x1
2323 return v0
24- """
24+ """ ,
2525 )
2626 }
27- }
27+ }
You can’t perform that action at this time.
0 commit comments