mirror of
https://github.com/java-diff-utils/java-diff-utils.git
synced 2026-03-13 10:11:17 +08:00
fixes #9
This commit is contained in:
@@ -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 <a href="dm.naumenko@gmail.com">Dmitry Naumenko</a>
|
||||
*/
|
||||
public final class DiffRow {
|
||||
public final class DiffRow implements Serializable {
|
||||
|
||||
private Tag tag;
|
||||
private final String oldLine;
|
||||
|
||||
Reference in New Issue
Block a user