public static List <Patch> MakePatches(List <Diff> diffs, int numContextLines = DefaultContext, bool collate = true) { var p = new Patch { diffs = diffs }; p.RecalculateLength(); p.Trim(numContextLines); if (p.length1 == 0) { return(new List <Patch>()); } if (!collate) { p.Uncollate(); } return(p.Split(numContextLines)); }
public List <Patch> Diff(int numContextLines = DefaultContext) { if (matches == null) { Match(); } var p = new Patch { diffs = LineMatching.MakeDiffList(matches, lines1, lines2) }; p.RecalculateLength(); p.Trim(numContextLines); if (p.length1 == 0) { return(new List <Patch>()); } return(p.Split(numContextLines)); }