mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2026-01-11 13:56:16 +00:00
11 lines
346 B
Kotlin
11 lines
346 B
Kotlin
package app.revanced.patcher
|
|
|
|
import app.revanced.patcher.patch.Patch
|
|
|
|
@FunctionalInterface
|
|
interface PatchesConsumer {
|
|
@Deprecated("Use acceptPatches(PatchSet) instead.", ReplaceWith("acceptPatches(patches.toSet())"))
|
|
fun acceptPatches(patches: List<Patch<*>>) = acceptPatches(patches.toSet())
|
|
fun acceptPatches(patches: PatchSet)
|
|
}
|