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]>
[Cherry-picked 55d2bd7]
  • Loading branch information
WojciechMazur authored and tgodzik committed Mar 6, 2025
1 parent 60d263d commit 1be3a6f
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 1be3a6f

Please sign in to comment.