remove unnecessary mut self references

This commit is contained in:
Toshit Chawda 2024-01-31 08:13:06 -08:00
parent 619a2a61c7
commit fa2b84d646
No known key found for this signature in database
GPG key ID: 91480ED99E2B3D9D
6 changed files with 55 additions and 19 deletions

View file

@ -30,7 +30,7 @@ impl EpxWebSocket {
// shut up
#[allow(clippy::too_many_arguments)]
pub async fn connect(
tcp: &mut EpoxyClient,
tcp: &EpoxyClient,
onopen: Function,
onclose: Function,
onerror: Function,