From 6048f34c586daa5b6ada39ccfd397ae2b9fdbfb7 Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Tue, 21 Sep 2010 15:26:03 -0700 Subject: [PATCH] Use HistogramDiff by default in DiffFormatter Its behavior is similar to PatienceDiff, and runs nearly as fast, often beating the performance of MyersDiff. Change-Id: I43c3faefa8109f1a68ef57522bec9cf27b5df252 Signed-off-by: Shawn O. Pearce --- org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffFormatter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffFormatter.java b/org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffFormatter.java index 1aa76bc43..be9a86eda 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffFormatter.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffFormatter.java @@ -118,7 +118,7 @@ public class DiffFormatter { private int abbreviationLength = 7; - private DiffAlgorithm diffAlgorithm = MyersDiff.INSTANCE; + private DiffAlgorithm diffAlgorithm = new HistogramDiff(); private RawTextComparator comparator = RawTextComparator.DEFAULT; @@ -213,7 +213,7 @@ public class DiffFormatter { * * @param alg * the algorithm to produce text file differences. - * @see MyersDiff#INSTANCE + * @see HistogramDiff */ public void setDiffAlgorithm(DiffAlgorithm alg) { diffAlgorithm = alg;