From 1cddf8d9063da3bbdba0fd7080c8c93768b83a4c Mon Sep 17 00:00:00 2001 From: bogadana <30848157+bogadana@users.noreply.github.com> Date: Tue, 5 Jul 2022 15:02:00 +0200 Subject: [PATCH] fix: remove unnecessary version constraints (#117) --- .../annotations/EnableDebuggingCompatibility.kt | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/src/main/kotlin/app/revanced/patches/youtube/misc/enabledebugging/annotations/EnableDebuggingCompatibility.kt b/src/main/kotlin/app/revanced/patches/youtube/misc/enabledebugging/annotations/EnableDebuggingCompatibility.kt index d0a388c62..9f21536ba 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/misc/enabledebugging/annotations/EnableDebuggingCompatibility.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/misc/enabledebugging/annotations/EnableDebuggingCompatibility.kt @@ -5,21 +5,9 @@ import app.revanced.patcher.annotation.Package @Compatibility( [Package( - "com.google.android.youtube", - arrayOf( - "17.14.35", - "17.17.34", - "17.19.36", - "17.20.37", - "17.22.36", - "17.23.35", - "17.23.36", - "17.24.34", - "17.24.35", - "17.25.34" - ) + "com.google.android.youtube", arrayOf() )] ) @Target(AnnotationTarget.CLASS) @Retention(AnnotationRetention.RUNTIME) -internal annotation class EnableDebuggingCompatibility \ No newline at end of file +internal annotation class EnableDebuggingCompatibility