Skip to content
This repository has been archived by the owner on Apr 15, 2023. It is now read-only.

Commit

Permalink
Unused import cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
chotchki committed Aug 16, 2021
1 parent 32f7ccf commit b05b44a
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/engine/io/file_manager/file_executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,13 @@ use super::file_operations::{FileOperations, FileOperationsError};
use super::request_type::RequestType;
use crate::constants::PAGE_SIZE;
use crate::engine::io::file_manager::ResourceFormatter;
use crate::engine::io::page_formats::{PageId, PageOffset, PageType};
use crate::engine::io::page_formats::{PageId, PageOffset};
use bytes::{Bytes, BytesMut};
use lru::LruCache;
use nom::bytes::complete::tag_no_case;
use nom::character::complete::alphanumeric1;
use nom::error::{ContextError, ParseError};
use nom::sequence::tuple;
use nom::IResult;
use std::collections::{HashMap, VecDeque};
use std::convert::TryFrom;
use std::ffi::OsStr;
use std::num::TryFromIntError;
use std::str::FromStr;
use std::string::FromUtf8Error;
use std::{
ffi::OsString,
Expand All @@ -30,7 +24,6 @@ use tokio::{
io::{AsyncReadExt, AsyncSeekExt},
sync::{mpsc::UnboundedReceiver, oneshot::Sender},
};
use uuid::Uuid;

/// Linux seems to limit to 1024, macos 256, windows 512 but I'm staying low until
/// a benchmark proves I need to change it.
Expand Down

0 comments on commit b05b44a

Please sign in to comment.