Skip to content

Commit

Permalink
fixed a bug that caused regression in sparqlify
Browse files Browse the repository at this point in the history
  • Loading branch information
Aklakan committed Jun 22, 2018
1 parent b522749 commit 0643106
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public static E_RdfTerm expand(ExprFunction fn) {
Tags.tagIri.equals(symbol)) {
result = createUri(fn.getArg(1));
} else if (Tags.tagStrLang.equals(symbol)) {
result = createPlainLiteral(fn.getArg(1));
result = createPlainLiteral(fn.getArg(1), fn.getArg(2));
} else if (Tags.tagStrDatatype.equals(symbol)) {
result = createTypedLiteral(fn.getArg(1), fn.getArg(2));
} else if (Tags.tagBNode.equals(symbol)) {
Expand Down

0 comments on commit 0643106

Please sign in to comment.