diff options
Diffstat (limited to 'azalea-buf/src/read.rs')
| -rwxr-xr-x | azalea-buf/src/read.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/azalea-buf/src/read.rs b/azalea-buf/src/read.rs index 882e2bce..8e406acb 100755 --- a/azalea-buf/src/read.rs +++ b/azalea-buf/src/read.rs @@ -1,14 +1,16 @@ -use super::{UnsizedByteArray, MAX_STRING_LENGTH}; -use byteorder::{ReadBytesExt, BE}; use std::{ backtrace::Backtrace, collections::HashMap, hash::Hash, io::{Cursor, Read}, }; + +use byteorder::{ReadBytesExt, BE}; use thiserror::Error; use tracing::warn; +use super::{UnsizedByteArray, MAX_STRING_LENGTH}; + #[derive(Error, Debug)] pub enum BufReadError { #[error("Invalid VarInt")] |
