mirror of
https://github.com/github/codeql.git
synced 2026-05-14 11:19:27 +02:00
Fix clippy: inline variable in format string
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -486,7 +486,7 @@ impl<'a> Visitor<'a> {
|
||||
let table = self
|
||||
.schema
|
||||
.get(&type_name)
|
||||
.unwrap_or_else(|| panic!("missing extractor schema entry for {:?}", type_name));
|
||||
.unwrap_or_else(|| panic!("missing extractor schema entry for {type_name:?}"));
|
||||
let mut valid = true;
|
||||
let parent_info = match self.stack.last_mut() {
|
||||
Some(p) if !node.is_extra() => {
|
||||
|
||||
Reference in New Issue
Block a user