From 17f3d7237cfbd6dbe627a443c56934df8f38d75f Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Fri, 6 Sep 2024 21:29:38 +0200 Subject: [PATCH] remove unused error --- src/connect.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/connect.rs b/src/connect.rs index 521aaa7..9cf1f07 100644 --- a/src/connect.rs +++ b/src/connect.rs @@ -29,8 +29,6 @@ pub(crate) enum LanMouseConnectionError { Dtls(#[from] webrtc_dtls::Error), #[error(transparent)] Webrtc(#[from] webrtc_util::Error), - #[error("no ips associated with the client")] - NoIps, #[error("not connected")] NotConnected, }