Github user ajs6f commented on a diff in the pull request:
https://github.com/apache/jena/pull/282#discussion_r142396325
--- Diff: jena-arq/src/main/java/org/apache/jena/sparql/util/FmtUtils.java
---
@@ -535,6 +535,7 @@ private static boolean validPNameChar(char ch)
{
if ( Character.isLetterOrDigit(ch) ) return true ;
if ( ch == '.' ) return true ;
+ if ( ch == ':' ) return true ;
--- End diff --
Oh, missed that. Yeah, I was reading some Scala the other day and it made
me sad to come back to ADT-less Java. ð
---