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

    https://github.com/apache/jena/pull/89#discussion_r35211560
  
    --- Diff: 
jena-arq/src/main/java/org/apache/jena/sparql/lang/arq/ARQParserBase.java ---
    @@ -67,4 +79,25 @@ protected void jsonValueString(String image, long 
currLine, long currCol)
         protected void jsonValueNull(long currLine, long currCol)              
      { handler.valueNull(currLine, currCol) ; }
         
         protected void jsonValueVar(String image, long currLine, long currCol) 
      { throw new NotImplemented("yet") ; }
    +    protected ElementGroup createQueryPattern(Template t){
    +        ElementGroup elg = new ElementGroup();
    +        List<Quad> quads = t.getQuads();
    +        HashMap<Node, BasicPattern> graphs = new HashMap<Node, 
BasicPattern>();
    --- End diff --
    
    Just `new HashMap<>` is okay after Java 7.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to