From b7101ae242c7832fef94f11d34da3c90431538bc Mon Sep 17 00:00:00 2001 From: Alaina <68250402+alaidriel@users.noreply.github.com> Date: Wed, 28 Feb 2024 09:56:14 -0600 Subject: [PATCH] Remove unused Display impl --- crates/highlights/src/kind.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/crates/highlights/src/kind.rs b/crates/highlights/src/kind.rs index d4e38c2..ac84970 100644 --- a/crates/highlights/src/kind.rs +++ b/crates/highlights/src/kind.rs @@ -1,14 +1,4 @@ -use std::fmt; - #[napi(string_enum)] pub enum Kind { Keyword, } - -impl fmt::Display for Kind { - fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - match self { - Kind::Keyword => write!(f, "keyword"), - } - } -}