style: Addressed style issues

This commit is contained in:
2026-04-28 08:08:23 -06:00
parent 0a21f10b04
commit 7965b970d9
4 changed files with 7 additions and 14 deletions
+2 -4
View File
@@ -311,10 +311,8 @@ impl JsonStreamParser {
}
self.balances.push(ch);
}
'[' => {
if self.start.is_some() {
self.balances.push(ch);
}
'[' if self.start.is_some() => {
self.balances.push(ch);
}
'}' => {
self.balances.pop();