mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 13:25:09 +00:00
Fix: clippy
This commit is contained in:
parent
bdfcae556d
commit
042bd0b78d
1 changed files with 1 additions and 1 deletions
|
@ -381,7 +381,7 @@ impl Query {
|
|||
if non_type_for_type_only_query || !self.matches_assoc_mode(symbol.is_assoc) {
|
||||
continue;
|
||||
}
|
||||
if self.should_hide_query(&symbol) {
|
||||
if self.should_hide_query(symbol) {
|
||||
continue;
|
||||
}
|
||||
if self.mode.check(&self.query, self.case_sensitive, &symbol.name) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue