Github user kinow commented on a diff in the pull request:
https://github.com/apache/jena/pull/114#discussion_r175923550
--- Diff:
jena-arq/src/main/java/org/apache/jena/sparql/engine/http/QueryEngineHTTP.java
---
@@ -532,6 +535,18 @@ else if (
actualContentType.equals(WebContent.contentTypeJSON))
}
}
+ @Override
+ public JsonArray execJson()
+ {
+ throw new NotImplementedException("JSON queries not implemented
for remote calls") ;
--- End diff --
Coincidentally, I noticed this [lang] class here too yesterday, and was
going to replace by that Atlas class... but first I searched other occurrences,
and I think somewhere in a sparql module it was being used too. So I thought it
was OK. Happy to replace this one by the atlas module class. Consider it done
in some hours.
---