chore: yes clippy, that is indeed an unneeded return statement

This commit is contained in:
kozabrada123 2023-12-16 11:38:40 +01:00
parent 6a5d58329d
commit 5abd143145
2 changed files with 2 additions and 11 deletions

View File

@ -361,7 +361,6 @@ impl VoiceGateway {
let result = VoiceGateway::handle_event(gateway_payload.data.get(), event).await;
if result.is_err() {
warn!("Failed to parse VOICE_READY ({})", result.err().unwrap());
return;
}
}
VOICE_BACKEND_VERSION => {
@ -374,7 +373,6 @@ impl VoiceGateway {
"Failed to parse VOICE_BACKEND_VERSION ({})",
result.err().unwrap()
);
return;
}
}
VOICE_SESSION_DESCRIPTION => {
@ -387,7 +385,6 @@ impl VoiceGateway {
"Failed to parse VOICE_SESSION_DESCRIPTION ({})",
result.err().unwrap()
);
return;
}
}
VOICE_SESSION_UPDATE => {
@ -400,7 +397,6 @@ impl VoiceGateway {
"Failed to parse VOICE_SESSION_UPDATE ({})",
result.err().unwrap()
);
return;
}
}
VOICE_SPEAKING => {
@ -410,7 +406,6 @@ impl VoiceGateway {
let result = VoiceGateway::handle_event(gateway_payload.data.get(), event).await;
if result.is_err() {
warn!("Failed to parse VOICE_SPEAKING ({})", result.err().unwrap());
return;
}
}
VOICE_CLIENT_DISCONNECT => {
@ -423,7 +418,6 @@ impl VoiceGateway {
"Failed to parse VOICE_CLIENT_DISCONNECT ({})",
result.err().unwrap()
);
return;
}
}
VOICE_CLIENT_CONNECT_FLAGS => {
@ -436,7 +430,6 @@ impl VoiceGateway {
"Failed to parse VOICE_CLIENT_CONNECT_FLAGS ({})",
result.err().unwrap()
);
return;
}
}
VOICE_CLIENT_CONNECT_PLATFORM => {
@ -449,7 +442,6 @@ impl VoiceGateway {
"Failed to parse VOICE_CLIENT_CONNECT_PLATFORM ({})",
result.err().unwrap()
);
return;
}
}
VOICE_MEDIA_SINK_WANTS => {
@ -462,7 +454,6 @@ impl VoiceGateway {
"Failed to parse VOICE_MEDIA_SINK_WANTS ({})",
result.err().unwrap()
);
return;
}
}
// We received a heartbeat from the server

View File

@ -101,10 +101,10 @@ impl UdpHandler {
payload: Vec::new(),
};
return UdpHandle {
UdpHandle {
ip_discovery,
socket,
};
}
}
/// The main listen task;