all: clippy

This commit is contained in:
Ryan Chandler 2022-07-23 13:44:28 +01:00
parent f1dcd0131c
commit c1faec57b5
No known key found for this signature in database
GPG Key ID: F113BCADDB3B0CCA

View File

@ -24,7 +24,6 @@ pub struct Parser {
pub current: Token,
pub peek: Token,
iter: IntoIter<Token>,
comments: Vec<String>,
}
#[allow(dead_code)]
@ -34,7 +33,6 @@ impl Parser {
current: Token::default(),
peek: Token::default(),
iter: tokens.into_iter(),
comments: Vec::new(),
};
this.next();