fix: Publicize abstract property

This commit is contained in:
oSumAtrIX
2024-04-22 19:04:06 +02:00
parent f0f876803e
commit b7c108ee20
2 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import app.revanced.patcher.patch.RawResourcePatch
import kotlin.math.max
abstract class BaseHexPatch : RawResourcePatch() {
internal abstract val replacements: List<Replacement>
abstract val replacements: List<Replacement>
override fun execute(context: ResourceContext) {
replacements.groupBy { it.targetFilePath }.forEach { (targetFilePath, replacements) ->