Skip to content

Commit 8a52320

Browse files
committed
cleanup unused variables
1 parent 2965131 commit 8a52320

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

crates/oxide/src/extractor/pre_processors/pug.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ impl PreProcessor for Pug {
1616
match cursor.curr {
1717
// Consume strings as-is
1818
b'\'' | b'"' if !bracket_stack.is_empty() => {
19-
let len = cursor.input.len();
2019
let end_char = cursor.curr;
2120

2221
cursor.advance();

crates/oxide/src/extractor/pre_processors/slim.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ impl PreProcessor for Slim {
3333

3434
// Consume strings as-is
3535
b'\'' | b'"' if !bracket_stack.is_empty() || matches!(cursor.prev, b'=') => {
36-
let len = cursor.input.len();
3736
let end_char = cursor.curr;
3837

3938
cursor.advance();

0 commit comments

Comments
 (0)