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: pr-unsubscr...@jena.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscr...@jena.apache.org
For additional commands, e-mail: pr-h...@jena.apache.org

Reply via email to