aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/parser.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/parser.rs b/src/parser.rs
index 0f38fbe..18714c8 100644
--- a/src/parser.rs
+++ b/src/parser.rs
@@ -120,16 +120,6 @@ pub enum Action {
Command(Vec<String>),
}
-impl Action {
- pub fn is_string(&self) -> bool {
- match *self {
- Action::String(_) => true,
- Action::Map(_) => false,
- Action::Command(_) => false,
- }
- }
-}
-
#[repr(C)]
#[derive(Debug, PartialEq)]
pub enum MapKind {