Skip to content

Commit 36fdb85

Browse files
committedJan 7, 2024
Remove useless references
1 parent 4b52009 commit 36fdb85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -837,8 +837,8 @@ impl Pattern {
837837
false
838838
}
839839
AnyChar => true,
840-
AnyWithin(ref specifiers) => in_char_specifiers(&specifiers, c, options),
841-
AnyExcept(ref specifiers) => !in_char_specifiers(&specifiers, c, options),
840+
AnyWithin(ref specifiers) => in_char_specifiers(specifiers, c, options),
841+
AnyExcept(ref specifiers) => !in_char_specifiers(specifiers, c, options),
842842
Char(c2) => chars_eq(c, c2, options.case_sensitive),
843843
AnySequence | AnyRecursiveSequence => unreachable!(),
844844
} {

0 commit comments

Comments
 (0)