diff --git a/src/fot/fstring.rs b/src/fot/fstring.rs index 26c87e3..439ba15 100644 --- a/src/fot/fstring.rs +++ b/src/fot/fstring.rs @@ -3,10 +3,10 @@ use super::raw::Raw; use anyhow::Result; use byteorder::{LittleEndian, ReadBytesExt, WriteBytesExt}; use encoding_rs::WINDOWS_1251; -use std::io::Cursor; use std::borrow::Borrow; -use std::hash::{Hash, Hasher}; use std::fmt; +use std::hash::{Hash, Hasher}; +use std::io::Cursor; // FString - Fallout @@ -105,4 +105,4 @@ impl fmt::Display for FString { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, "{}", self.str) } -} \ No newline at end of file +}