java-diff-utils icon indicating copy to clipboard operation
java-diff-utils copied to clipboard

Diff misses change

Open GoogleCodeExporter opened this issue 9 years ago • 0 comments

Try these:

Lst<String> original = Arrays.asList("line1", "line2", "line3");
List<String> revised = Arrays.asList("line1", "line2-2", "line4");

Patch patch = DiffUtils.diff(original, revised);

position 1 shows as changed, but that is the only delta produced.

Original issue reported on code.google.com by [email protected] on 30 Sep 2013 at 9:32

GoogleCodeExporter avatar Feb 28 '16 10:02 GoogleCodeExporter