Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Matt Bovel <[email protected]>
  • Loading branch information
WojciechMazur and mbovel authored Nov 12, 2024
1 parent 27390b5 commit 55d2bd7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ object JsonNameTransformer {
buf.append(name.subSequence(0, i))
}
buf.append(op2code(c.toInt))
} else if (c <= 0x1F || c > 0x7F) {
} else if (c <= 0x1F || c >= 0x7F) {
if (buf eq null) {
buf = new StringBuilder()
buf.append(name.subSequence(0, i))
Expand Down

0 comments on commit 55d2bd7

Please sign in to comment.