Skip to content

Commit

Permalink
FIX string representation of blank nodes in serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
mdesalvo committed Mar 17, 2019
1 parent 0c6c75a commit 0fdc422
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RDFSharp/Query/RDFQueryUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ internal static String PrintRDFPatternMember(RDFPatternMember patternMember, Lis
#region Blank
if (patternMember is RDFResource && ((RDFResource)patternMember).IsBlank)
{
return patternMember.ToString();
return patternMember.ToString().Replace("bnode:", "_:");
}
#endregion

Expand Down

0 comments on commit 0fdc422

Please sign in to comment.