Haozhun Jin
Haozhun Jin
I made some changes to the code I originally posted here. The only significant change is that all zones are initiated ahead of time (instead of using a cache). For...
In addition, `\uD800\uDC00`, which is a legal sequence, will also result in infinite loop, because JONI consider every `\uXXXX` as a code point.
Java code that illustrate the infinite loop. This can be mitigated by using `NonStrict...` instead as illustrated in the commented out code. ``` public static void main(String[] args) { byte[]...
In my original PR, I mentioned that I've verified that the fix is idempotent. However, in reality, I did actually run into one issue when I repeatedly ran the steps....