diff --git a/src/main/java/com/github/difflib/text/DiffRow.java b/src/main/java/com/github/difflib/text/DiffRow.java index 0898836..f6ab5f5 100644 --- a/src/main/java/com/github/difflib/text/DiffRow.java +++ b/src/main/java/com/github/difflib/text/DiffRow.java @@ -19,13 +19,15 @@ limitations under the License. */ package com.github.difflib.text; +import java.io.Serializable; + /** * Describes the diff row in form [tag, oldLine, newLine) for showing the difference between two * texts * * @author Dmitry Naumenko */ -public final class DiffRow { +public final class DiffRow implements Serializable { private Tag tag; private final String oldLine;