Remove some unused imports
This commit is contained in:
parent
6245dba4f0
commit
da8e2d6771
3 changed files with 2 additions and 2 deletions
|
|
@ -33,6 +33,7 @@ fn parse_statement(input: &str) -> IResult<&str, RawQuerySyntax> {
|
|||
}
|
||||
|
||||
/// Parse one or more statements
|
||||
#[allow(dead_code)]
|
||||
fn parse_statement1(input: &str) -> IResult<&str, Vec<RawQuerySyntax>> {
|
||||
many1(terminated(parse_statement, delimited(multispace0, char(';'), multispace0)))(input)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue