misc: clippy: add semicolon_if_nothing_returned

Signed-off-by: Philipp Schuster <philipp.schuster@cyberus-technology.de>
On-behalf-of: SAP philipp.schuster@sap.com
This commit is contained in:
Philipp Schuster 2025-11-18 12:26:21 +01:00 committed by Rob Bradford
parent ea4f07d3bf
commit b4c62bf159
64 changed files with 244 additions and 236 deletions

View file

@ -407,7 +407,7 @@ fn dequote(s: &str) -> String {
} else {
out.push(i);
}
prev_byte = i
prev_byte = i;
}
assert!(!in_quotes, "split_commas didn't reject unbalanced quotes");
// SAFETY: the non-ASCII bytes in the output are the same
@ -515,6 +515,6 @@ mod unit_tests {
#[test]
fn check_dequote() {
assert_eq!(dequote("a\u{3b2}\"a\"\"\""), "a\u{3b2}a\"")
assert_eq!(dequote("a\u{3b2}\"a\"\"\""), "a\u{3b2}a\"");
}
}