style: Addressed style issues

This commit is contained in:
2026-04-28 08:08:23 -06:00
parent 6c5f696f99
commit 1bb281b2a0
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();