Skip to content

Commit

Permalink
#10003 - fixed nilReason value
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoltz committed Sep 24, 2024
1 parent b763c8b commit f173187
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ private void writeNilAttributes(Map<QName, PrimitiveValue> attributes) throws XM
writeAttributeWithNS(XSI_NIL.getNamespaceURI(), XSI_NIL.getLocalPart(), "true");
PrimitiveValue value = attributes.get(NIL_REASON);
if (value != null)
writeAttributeWithNS(NIL_REASON.getNamespaceURI(), NIL_REASON.getLocalPart(), "true");
writeAttributeWithNS(NIL_REASON.getNamespaceURI(), NIL_REASON.getLocalPart(), value.getAsText());
}

private boolean excludeByTimeSliceFilter(Property property) {
Expand Down

0 comments on commit f173187

Please sign in to comment.