Skip to content

Commit

Permalink
Fix conversion error
Browse files Browse the repository at this point in the history
  • Loading branch information
bkiefer committed Aug 28, 2024
1 parent 267bbc4 commit c400572
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ private Set<String> storeRdfProperies(Rdf rdfDialAct, RdfProxy proxy) {
if (c == '<') {
theval = proxy.getRdf(val);
} else if (c == '"') {
theval = XsdAnySimpleType.getXsdObject(val);
theval = XsdAnySimpleType.getXsdObject(val).toJava();
}
rdfDialAct.setValue(prop, theval);
} else {
Expand Down

0 comments on commit c400572

Please sign in to comment.