Skip to content

Commit

Permalink
DBZ-7598 Permit Infinispan nullable XML value serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
Naros committed Mar 4, 2024
1 parent edac20f commit 0dfb662
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 0dfb662

Please sign in to comment.