Skip to content

Commit e4232b6

Browse files
committed
feat(Expense Manager): Remove non-functional Unlock pro patch
1 parent 1cf25f9 commit e4232b6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/main/kotlin/app/revanced/patches/moneymanager/UnlockProPatch.kt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@ import app.revanced.patcher.patch.annotation.Patch
88
import 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")
1515
object 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+
}

0 commit comments

Comments
 (0)