1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 06:16:04 +00:00

remove a println

This commit is contained in:
mat 2022-10-07 23:57:31 -05:00
parent 6f6289376a
commit 7c955c794a

View file

@ -213,7 +213,6 @@ where
// if we were given a cipher, decrypt the packet
if let Some(message) = framed.next().await {
let mut bytes = message.unwrap();
println!("bytes: {:?}", bytes.len());
if let Some(cipher) = cipher {
azalea_crypto::decrypt_packet(cipher, &mut bytes);