Github user kinow commented on a diff in the pull request:

    https://github.com/apache/jena/pull/114#discussion_r182392871
  
    --- 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 {");
    --- End diff --
    
    >JSON { "s": "FOO" } becomes JSON { "s": FOO }
    
    Shouldn't it be
    
    ```
    JSON { "s": "FOO" } becomes JSON { "s": "FOO" } // last FOO still with 
double quotes / a string?
    ```


---

Reply via email to