Skip to content

Commit

Permalink
Jan-29 23h08: parser.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
denisidoro committed Jan 29, 2025
1 parent e3e2d3a commit 41a7585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ impl<'a> Parser<'a> {
}

// duplicate
if !item.tags.is_empty() && !item.comment.is_empty() {}
if !item.tags.is_empty() { !item.comment.is_empty(); }

Check warning on line 257 in src/parser.rs

View workflow job for this annotation

GitHub Actions / Tests

unused unary operation that must be used

Check warning on line 257 in src/parser.rs

View workflow job for this annotation

GitHub Actions / Tests

unused unary operation that must be used
// blank
if line.is_empty() {
if !item.snippet.is_empty() {
Expand Down

0 comments on commit 41a7585

Please sign in to comment.