afs commented on PR #2971:
URL: https://github.com/apache/jena/pull/2971#issuecomment-2608304093
Hi @hoijui
The function `str(char)` takes the `char` and returns a string of the quoted
character together with its Unicode codepoint.
```java
private static String str(char ch) {
return String.format("'%s' U+%04X", Character.valueOf(ch), (int)ch);
}
```
so the bug is that the `%c` should be `%s`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]