From 61762f76c457f348ef599e146f3853e941d4c45c Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Sat, 5 Nov 2022 04:47:17 +0100 Subject: [PATCH] feat(debugging): simplify patch name and description --- .../misc/enabledebugging/patch/EnableDebuggingPatch.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/enabledebugging/patch/EnableDebuggingPatch.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/enabledebugging/patch/EnableDebuggingPatch.kt index 94fff3cb1..2bebbb7f6 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/misc/enabledebugging/patch/EnableDebuggingPatch.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/misc/enabledebugging/patch/EnableDebuggingPatch.kt @@ -17,9 +17,9 @@ import app.revanced.patches.youtube.misc.settings.framework.components.impl.Swit import org.w3c.dom.Element @Patch(false) -@Name("enable-debugging") +@Name("debugging") @DependsOn([IntegrationsPatch::class, SettingsPatch::class]) -@Description("Enables app debugging by patching the manifest file.") +@Description("Adds debugging options.") @EnableDebuggingCompatibility @Version("0.0.1") class EnableDebuggingPatch : ResourcePatch {