summaryrefslogtreecommitdiffstats
path: root/crates/pcre2/src/matcher.rs
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2024-03-07 09:37:48 -0500
committerAndrew Gallant <jamslam@gmail.com>2024-03-07 09:37:48 -0500
commit59212d08d3ef122adc781dfa09343df7848febf8 (patch)
tree8298e08f689b88ebca0e07948be31efda2d1ff5f /crates/pcre2/src/matcher.rs
parent6ebebb2aaa9991694aed10b944cf2e8196811e1c (diff)
style: fix new lints
The Rust compiler seems to have gotten smarter at finding unused or redundant imports.
Diffstat (limited to 'crates/pcre2/src/matcher.rs')
-rw-r--r--crates/pcre2/src/matcher.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/pcre2/src/matcher.rs b/crates/pcre2/src/matcher.rs
index ecc7c16f..56c9356d 100644
--- a/crates/pcre2/src/matcher.rs
+++ b/crates/pcre2/src/matcher.rs
@@ -428,7 +428,7 @@ fn has_uppercase_literal(pattern: &str) -> bool {
#[cfg(test)]
mod tests {
- use grep_matcher::{LineMatchKind, Matcher};
+ use grep_matcher::LineMatchKind;
use super::*;