Skip to content

Commit

Permalink
Fixes #54 - bug was reintroduced by 0fd621e (which wasn't a fix but r…
Browse files Browse the repository at this point in the history
…egression...)
  • Loading branch information
IgorRodchenkov committed May 10, 2024
1 parent 8d9fd8c commit 305ff23
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ private void writeStatementFor(BioPAXElement bean, PropertyEditor editor, Object
{
String type = findLiteralType(editor);
String valString = escapeXml(value.toString());
out.write(" rdf:datatype = \"xsd:" + type + "\">" + valString +
out.write(" rdf:datatype = \"" + xsd + type + "\">" + valString +
"</" + prop + ">");
}
}
Expand Down

0 comments on commit 305ff23

Please sign in to comment.