From b00fbf153e6e4d931375073d8b9aa032bd0d7572 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa?= Date: Mon, 23 May 2022 19:52:58 +0200 Subject: [PATCH] Fix clippy lint and remove unused log --- src/api/notifications.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/api/notifications.rs b/src/api/notifications.rs index 6b9460e4..2657d312 100644 --- a/src/api/notifications.rs +++ b/src/api/notifications.rs @@ -258,7 +258,7 @@ fn create_ping() -> Vec { } #[allow(dead_code)] -#[derive(PartialEq)] +#[derive(Eq, PartialEq)] pub enum UpdateType { CipherUpdate = 0, CipherCreate = 1, @@ -349,8 +349,6 @@ async fn handle_connection(stream: TcpStream, users: WebSocketUsers, addr: Socke res = stream.next() => { match res { Some(Ok(message)) => { - //info!("RECEIVED {message:?}"); - // Respond to any pings if let Message::Ping(ping) = message { if stream.send(Message::Pong(ping)).await.is_err() {