Skip to content

Commit

Permalink
Merge pull request #1745 from lat-lon/fix/nilReason-199-10003-3.6
Browse files Browse the repository at this point in the history
Fixed value of nilReason (3.6)
  • Loading branch information
copierrj authored Oct 9, 2024
2 parents d6d3b34 + 616c8d7 commit f227d2c
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 f227d2c

Please sign in to comment.