From 68b34f0f37dc8b8c8e660c7a861dc52ac3a25baf Mon Sep 17 00:00:00 2001 From: inotia00 Date: Wed, 20 Sep 2023 15:02:42 +0900 Subject: [PATCH] fix(music/spoof-app-version): remove unintentional dependencies --- .../music/misc/versionspoof/patch/SpoofAppVersionPatch.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/kotlin/app/revanced/patches/music/misc/versionspoof/patch/SpoofAppVersionPatch.kt b/src/main/kotlin/app/revanced/patches/music/misc/versionspoof/patch/SpoofAppVersionPatch.kt index 26bc7cec2..cc045b0fc 100644 --- a/src/main/kotlin/app/revanced/patches/music/misc/versionspoof/patch/SpoofAppVersionPatch.kt +++ b/src/main/kotlin/app/revanced/patches/music/misc/versionspoof/patch/SpoofAppVersionPatch.kt @@ -6,7 +6,6 @@ import app.revanced.patcher.data.BytecodeContext import app.revanced.patcher.patch.annotations.DependsOn import app.revanced.patcher.patch.annotations.Patch import app.revanced.patches.music.general.oldstylelibraryshelf.patch.OldStyleLibraryShelfPatch -import app.revanced.patches.music.navigation.sample.patch.SampleButtonPatch import app.revanced.patches.music.utils.annotations.MusicCompatibility import app.revanced.patches.music.utils.settings.resource.patch.SettingsPatch import app.revanced.patches.shared.patch.versionspoof.AbstractVersionSpoofPatch @@ -19,7 +18,6 @@ import app.revanced.util.integrations.Constants.MUSIC_MISC_PATH @DependsOn( [ OldStyleLibraryShelfPatch::class, - SampleButtonPatch::class, SettingsPatch::class ] )