Github user afs commented on a diff in the pull request:
https://github.com/apache/jena/pull/114#discussion_r184631233
--- Diff:
jena-arq/src/main/java/org/apache/jena/sparql/serializer/QuerySerializer.java
---
@@ -142,7 +144,19 @@ public void visitAskResultForm(Query query)
out.print("ASK") ;
out.newline() ;
}
-
+
+ @Override
+ public void visitJsonResultForm(Query query) {
+ out.print("JSON {");
+ List<String> terms = new ArrayList<>();
+ for (Map.Entry<String, Object> entry :
query.getJsonMapping().entrySet()) {
--- End diff --
Sorry about the patch - I couldn't figure how to clone your repo because GH
did not like the fact I already had a repo called "jena". Yes, a constant is
better. I thought that 4 looked nicer than 2 and it does not get indented
further. Just use `incIndent` twice!
---