From 8fc2f06ef7267c112a20bb498f517ca6823358eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Rodrigues=20Miguel?= Date: Fri, 1 Oct 2021 11:46:20 -0300 Subject: [PATCH] error: remove unused error variants --- src/error.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/error.rs b/src/error.rs index ba7f7f2..dbf70d0 100644 --- a/src/error.rs +++ b/src/error.rs @@ -9,9 +9,6 @@ use crate::{oof, utils::colors::*}; pub enum Error { UnknownExtensionError(String), MissingExtensionError(PathBuf), - // TODO: get rid of this error variant - InvalidUnicode, - InvalidInput, IoError { reason: String }, FileNotFound(PathBuf), AlreadyExists,