From eca5293b259f0e2baaa0ddafd21c43e489ef2bfd Mon Sep 17 00:00:00 2001 From: thewh1teagle <61390950+thewh1teagle@users.noreply.github.com> Date: Fri, 17 Jan 2025 11:48:07 +0200 Subject: [PATCH] refactor(window-state): Remove unused Glob error variant from Error enum --- plugins/window-state/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/window-state/src/lib.rs b/plugins/window-state/src/lib.rs index 8e373d7a..e8bf3f1f 100644 --- a/plugins/window-state/src/lib.rs +++ b/plugins/window-state/src/lib.rs @@ -42,8 +42,6 @@ pub enum Error { Tauri(#[from] tauri::Error), #[error(transparent)] SerdeJson(#[from] serde_json::Error), - #[error(transparent)] - Glob(#[from] glob::PatternError), } pub type Result = std::result::Result;