diff options
author | Daniel <kingdread@gmx.de> | 2020-05-13 12:52:13 +0200 |
---|---|---|
committer | Daniel <kingdread@gmx.de> | 2020-05-13 12:52:13 +0200 |
commit | 331d6b1762d1d9431b210fc98a495d56ad7a1cd1 (patch) | |
tree | 24345d05808eaa0f034b5b33c3d335624b0111c6 /src/fexpr | |
parent | 279fed9f175a84799f37ffb3fbb22b64313f8c47 (diff) | |
download | raidgrep-331d6b1762d1d9431b210fc98a495d56ad7a1cd1.tar.gz raidgrep-331d6b1762d1d9431b210fc98a495d56ad7a1cd1.tar.bz2 raidgrep-331d6b1762d1d9431b210fc98a495d56ad7a1cd1.zip |
clean up SearchField related code
With the addition of our own parser, we no longer need the FromStr
implementation for SearchField. Furthermore, it is now only used in
player::NameFilter, so the definition has been moved there. The import
in the grammar was unused as well, so it has been removed.
Diffstat (limited to 'src/fexpr')
-rw-r--r-- | src/fexpr/grammar.lalrpop | 1 | ||||
-rw-r--r-- | src/fexpr/mod.rs | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/fexpr/grammar.lalrpop b/src/fexpr/grammar.lalrpop index 6a7a9a0..45f4fde 100644 --- a/src/fexpr/grammar.lalrpop +++ b/src/fexpr/grammar.lalrpop @@ -4,7 +4,6 @@ use super::{ FightOutcome, filters, PlayerClass, - SearchField, }; use evtclib::Boss; use std::collections::HashSet; diff --git a/src/fexpr/mod.rs b/src/fexpr/mod.rs index 452d66c..c6a3a39 100644 --- a/src/fexpr/mod.rs +++ b/src/fexpr/mod.rs @@ -3,7 +3,7 @@ //! This module contains methods to parse a given string into an abstract filter tree, check its //! type and convert it to a [`Filter`][super::filters::Filter]. // Make it available in the grammar mod. -use super::{filters, playerclass::PlayerClass, FightOutcome, SearchField}; +use super::{filters, playerclass::PlayerClass, FightOutcome}; use std::{error, fmt}; |