From ea7a013abecd6d1cf8a49225827cb1df57188d78 Mon Sep 17 00:00:00 2001 From: Craig Everett Date: Sun, 23 Aug 2026 11:03:00 +0900 Subject: [PATCH] WIP: Tiny note --- src/main/java/swiss/qpq/gajumaru/core/encoding/ZJ.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/swiss/qpq/gajumaru/core/encoding/ZJ.java b/src/main/java/swiss/qpq/gajumaru/core/encoding/ZJ.java index 9b55bf0..d63b15f 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/encoding/ZJ.java +++ b/src/main/java/swiss/qpq/gajumaru/core/encoding/ZJ.java @@ -316,7 +316,7 @@ public final class ZJ { // This is a nitpick but it turns out that Character.isDigit() accepts a bunch of possible // unicode digits as well as ASCII '0' through '9'. That's normally good, but not for - // parsing JSON! + // parsing JSON! (Shoutout to P.H. -- "only ever permit ASCII" wins this one time.) private static boolean isDigit(char c) { return c >= '0' && c <= '9'; }