Skip to content

Commit

Permalink
Fix #488 Fix #344
Browse files Browse the repository at this point in the history
  • Loading branch information
enridaga committed Jul 17, 2024
1 parent f417b70 commit 7b62433
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ public NodeValue exec(List<NodeValue> list) {
}else if(node.isInteger()){
sb.append(Integer.toString(node.getInteger().intValue()));
}else if(node.isLiteral()){
sb.append(node.getString());
sb.append(node.asString());
}else if(node.isBlank()){
sb.append(node.getNode().getBlankNodeId());
}else if(node.isIRI()){
if(isContainerMembershipProperty(node)){
sb.append(Integer.toString(getInt(node)));
Expand Down

0 comments on commit 7b62433

Please sign in to comment.