mirror of
https://github.com/revanced/revanced-patcher.git
synced 2025-05-06 23:24:26 +02:00

BREAKING CHANGE: Method signature of execute() was changed to include the cache, this will break existing implementations of the Patch class.
8 lines
177 B
Kotlin
8 lines
177 B
Kotlin
package net.revanced.patcher.patch
|
|
|
|
import net.revanced.patcher.cache.Cache
|
|
|
|
abstract class Patch(val patchName: String) {
|
|
abstract fun execute(cache: Cache): PatchResult
|
|
}
|