Improve dead code analysis

This commit is contained in:
mu001999 2024-07-04 22:05:00 +08:00
parent 7bbbbb37e8
commit 2ec3a7dd6a

View file

@ -241,11 +241,3 @@ impl Parse for QueryGroup {
Ok(QueryGroup { group_path })
}
}
struct Nothing;
impl Parse for Nothing {
fn parse(_input: ParseStream<'_>) -> syn::Result<Self> {
Ok(Nothing)
}
}