From d8f1ef6dbd28443933fb4db6c815cc92c472db18 Mon Sep 17 00:00:00 2001 From: mykola2312 <49044616+mykola2312@users.noreply.github.com> Date: Thu, 31 Aug 2023 13:51:41 +0300 Subject: [PATCH] cargo fmt --- src/fot/fstring.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 +}