From 817038327827a38720e50a0336cd5831bf0cd0d6 Mon Sep 17 00:00:00 2001 From: Liam Warfield Date: Sun, 25 Jan 2026 10:08:56 -0700 Subject: [PATCH] Remove connection::* import. --- gui/src/imp/mobile.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gui/src/imp/mobile.rs b/gui/src/imp/mobile.rs index dec58d8..cbdf085 100644 --- a/gui/src/imp/mobile.rs +++ b/gui/src/imp/mobile.rs @@ -5,8 +5,6 @@ use mumble_web2_common::{ClientConfig, ServerStatus}; use std::future::Future; use std::time::Duration; -pub use super::connect::*; - /// Mobile platform implementation using Tokio, native audio, and Android permissions. pub struct MobilePlatform; @@ -43,7 +41,7 @@ impl super::PlatformInterface for MobilePlatform { event_rx: &mut UnboundedReceiver, gui_config: &ClientConfig, ) -> Result<(), Error> { - network_connect(address, username, event_rx, gui_config).await + super::connect::network_connect(address, username, event_rx, gui_config).await } async fn get_status(client: &reqwest::Client) -> color_eyre::Result {