We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6977036 commit 92eb4b3Copy full SHA for 92eb4b3
src/main/java/com/github/difflib/text/DiffRow.java
@@ -19,13 +19,15 @@
19
*/
20
package com.github.difflib.text;
21
22
+import java.io.Serializable;
23
+
24
/**
25
* Describes the diff row in form [tag, oldLine, newLine) for showing the difference between two
26
* texts
27
*
28
* @author <a href="dm.naumenko@gmail.com">Dmitry Naumenko</a>
29
-public final class DiffRow {
30
+public final class DiffRow implements Serializable {
31
32
private Tag tag;
33
private final String oldLine;
0 commit comments