From b848c956d2c997fc3e142d245ee0fcdb75bc4ad0 Mon Sep 17 00:00:00 2001 From: Kasey Schlaudt Date: Thu, 22 May 2025 23:51:20 +0100 Subject: [PATCH] chore: clean up unused and potentially confusing variable. --- .../src/main/java/com/example/jetcaster/ui/JetcasterAppState.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/Jetcaster/mobile/src/main/java/com/example/jetcaster/ui/JetcasterAppState.kt b/Jetcaster/mobile/src/main/java/com/example/jetcaster/ui/JetcasterAppState.kt index a3f5645ad..5992487c8 100644 --- a/Jetcaster/mobile/src/main/java/com/example/jetcaster/ui/JetcasterAppState.kt +++ b/Jetcaster/mobile/src/main/java/com/example/jetcaster/ui/JetcasterAppState.kt @@ -43,8 +43,6 @@ sealed class Screen(val route: String) { } object PodcastDetails : Screen("podcast/{$ARG_PODCAST_URI}") { - - val PODCAST_URI = "podcastUri" fun createRoute(podcastUri: String) = "podcast/$podcastUri" }