Skip to content

Commit

Permalink
minor edits in warning messages
Browse files Browse the repository at this point in the history
  • Loading branch information
keski committed Aug 19, 2016
1 parent 5fb1480 commit d4bc9f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/rspql/lang/csparql/FormatterElement.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ public void visitResultGroup(ElementGroup elGroup) {

for (Element el : elGroup.getElements()) {
if (el instanceof ElementNamedGraph) {
FormatterElement.printError(
"WARNING: Named graphs in results are not supported in C-SPARQL. The triples will be added directly to the default graph.\n");
FormatterElement.printError("WARNING: Named graphs in results are not supported in C-SPARQL. "
+ "The triples will be added directly to the default graph.\n");

ElementGroup group = (ElementGroup) ((ElementNamedGraph) el).getElement();
for (Element e : group.getElements()) {
Expand Down

0 comments on commit d4bc9f3

Please sign in to comment.