Skip to content

Commit

Permalink
refact: replaced SparqlGraph.sparqlNodeDelete with sparqlNodeDelete
Browse files Browse the repository at this point in the history
  • Loading branch information
litvinovg authored and brianjlowe committed Jun 10, 2024
1 parent 9b92968 commit 4512ca7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -581,11 +581,11 @@ private static void addStatementPatterns(List<Statement> stmts,
if (whereClause) {
if (t.getSubject().isBlank()) {
patternBuff.append(" FILTER(isBlank(").append(
SparqlGraph.sparqlNodeDelete(t.getSubject(), null)).append(")) \n");
sparqlNodeDelete(t.getSubject(), null)).append(")) \n");
}
if (t.getObject().isBlank()) {
patternBuff.append(" FILTER(isBlank(").append(
SparqlGraph.sparqlNodeDelete(t.getObject(), null)).append(")) \n");
sparqlNodeDelete(t.getObject(), null)).append(")) \n");
}
}
}
Expand Down

0 comments on commit 4512ca7

Please sign in to comment.