DBZ-7598 Permit Infinispan nullable XML value serialization

This commit is contained in:
Chris Cranford 2024-03-04 12:40:49 -05:00 committed by Chris Cranford
parent edac20f658
commit 0dfb66235f

View File

@ -46,9 +46,9 @@ public XmlWriteEvent factory(int eventType, String scn, String tableId, String r
* A ProtoStream handler to extract the {@code xml} field from the {@link XmlWriteEvent}.
*
* @param event the event instance, must not be {@code null}
* @return the xml, never {@code null}
* @return the xml
*/
@ProtoField(number = 7, required = true)
@ProtoField(number = 7)
public String getXml(XmlWriteEvent event) {
return event.getXml();
}