Skip to content

Commit

Permalink
refactor: remove single-use use statement & use full path instead
Browse files Browse the repository at this point in the history
  • Loading branch information
Oakchris1955 committed Aug 7, 2024
1 parent aec2de6 commit b250768
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ use serde::{Deserialize, Serialize};
use serde_big_array::BigArray;

use ::time;
use ops::Deref;
use time::{Date, PrimitiveDateTime, Time};

use crate::{error::*, io::prelude::*, path::PathBuf};
Expand Down Expand Up @@ -652,7 +651,7 @@ where
current_cluster: u32,
}

impl<S> Deref for File<'_, S>
impl<S> ops::Deref for File<'_, S>
where
S: Read + Write + Seek,
{
Expand Down

0 comments on commit b250768

Please sign in to comment.