revanced-patches/src/main/kotlin/app/revanced/patches/youtube/layout/hide/loadmorebutton/HideLoadMoreButtonPatch.kt

12 lines
491 B
Kotlin

package app.revanced.patches.youtube.layout.hide.loadmorebutton
import app.revanced.patcher.data.BytecodeContext
import app.revanced.patcher.patch.BytecodePatch
import app.revanced.patches.youtube.layout.hide.general.HideLayoutComponentsPatch
@Deprecated("This patch class has been merged into HideLayoutComponentsPatch.")
object HideLoadMoreButtonPatch : BytecodePatch(
dependencies = setOf(HideLayoutComponentsPatch::class)
) {
override fun execute(context: BytecodeContext) {}
}