aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/handshake
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2021-12-26 14:17:01 -0600
committermat <github@matdoes.dev>2021-12-26 14:17:01 -0600
commit1a961d968b80b720ef2d3900c0b95e1c16a0089e (patch)
treef7d5a23e6832a539a3fdf0364bb80f825973ce07 /azalea-protocol/src/packets/handshake
parentaf28b0e57aeeca8790e3014f3e568c60ae892e39 (diff)
downloadazalea-drasl-1a961d968b80b720ef2d3900c0b95e1c16a0089e.tar.xz
fix some clippy warnings
Diffstat (limited to 'azalea-protocol/src/packets/handshake')
-rw-r--r--azalea-protocol/src/packets/handshake/client_intention_packet.rs2
-rw-r--r--azalea-protocol/src/packets/handshake/mod.rs1
2 files changed, 0 insertions, 3 deletions
diff --git a/azalea-protocol/src/packets/handshake/client_intention_packet.rs b/azalea-protocol/src/packets/handshake/client_intention_packet.rs
index 5b50c7cc..939a695e 100644
--- a/azalea-protocol/src/packets/handshake/client_intention_packet.rs
+++ b/azalea-protocol/src/packets/handshake/client_intention_packet.rs
@@ -1,7 +1,5 @@
use std::hash::Hash;
-use tokio::io::BufReader;
-
use crate::{mc_buf::Writable, packets::ConnectionProtocol};
use super::HandshakePacket;
diff --git a/azalea-protocol/src/packets/handshake/mod.rs b/azalea-protocol/src/packets/handshake/mod.rs
index 70e1a90d..1d753645 100644
--- a/azalea-protocol/src/packets/handshake/mod.rs
+++ b/azalea-protocol/src/packets/handshake/mod.rs
@@ -1,7 +1,6 @@
pub mod client_intention_packet;
use async_trait::async_trait;
-use tokio::io::BufReader;
use crate::connect::PacketFlow;