Skip to content
This repository was archived by the owner on Oct 21, 2020. It is now read-only.

Commit 92eb4b3

Browse files
committed
1 parent 6977036 commit 92eb4b3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/com/github/difflib/text/DiffRow.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,15 @@
1919
*/
2020
package com.github.difflib.text;
2121

22+
import java.io.Serializable;
23+
2224
/**
2325
* Describes the diff row in form [tag, oldLine, newLine) for showing the difference between two
2426
* texts
2527
*
2628
* @author <a href="dm.naumenko@gmail.com">Dmitry Naumenko</a>
2729
*/
28-
public final class DiffRow {
30+
public final class DiffRow implements Serializable {
2931

3032
private Tag tag;
3133
private final String oldLine;

0 commit comments

Comments
 (0)