From 8619f888065068edc7ac68b5ca57118d4fff8337 Mon Sep 17 00:00:00 2001 From: ConnorSkees <39542938+ConnorSkees@users.noreply.github.com> Date: Fri, 28 Feb 2020 00:41:14 -0500 Subject: [PATCH] Remove unused QuoteKind impl --- src/common.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/common.rs b/src/common.rs index cd5d4fd..1c9e41f 100644 --- a/src/common.rs +++ b/src/common.rs @@ -428,16 +428,6 @@ impl Display for QuoteKind { } } -impl QuoteKind { - pub fn as_str(self) -> &'static str { - match self { - Self::Single => "'", - Self::Double => "\"", - Self::None => "", - } - } -} - #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub(crate) enum ListSeparator { Space,