summaryrefslogtreecommitdiffstats
path: root/crates/regex/src/matcher.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/regex/src/matcher.rs')
-rw-r--r--crates/regex/src/matcher.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/regex/src/matcher.rs b/crates/regex/src/matcher.rs
index a85bca66..19cad740 100644
--- a/crates/regex/src/matcher.rs
+++ b/crates/regex/src/matcher.rs
@@ -54,9 +54,9 @@ impl RegexMatcherBuilder {
trace!("final regex: {:?}", matcher.regex());
Ok(RegexMatcher {
config: self.config.clone(),
- matcher: matcher,
- fast_line_regex: fast_line_regex,
- non_matching_bytes: non_matching_bytes,
+ matcher,
+ fast_line_regex,
+ non_matching_bytes,
})
}