fix: Remove unused Error struct

pull/24376/head
Carol (Nichols || Goulding) 2022-09-07 17:12:20 -04:00
parent ee3e1b851d
commit 955e7ea824
No known key found for this signature in database
GPG Key ID: E907EE5A736F87D4
1 changed files with 0 additions and 5 deletions

View File

@ -15,11 +15,6 @@ use std::{
collections::{HashMap, VecDeque},
sync::Arc,
};
use thiserror::Error;
#[derive(Debug, Error)]
#[allow(missing_copy_implementations, missing_docs)]
pub enum Error {}
/// Hot compaction. Returns the number of compacted partitions.
pub async fn compact(compactor: Arc<Compactor>) -> usize {