List of usage examples for org.eclipse.jgit.diff HistogramDiff setFallbackAlgorithm
public void setFallbackAlgorithm(DiffAlgorithm alg)
From source file:com.google.gerrit.server.patch.PatchListLoader.java
License:Apache License
private FileHeader toFileHeaderWithoutMyersDiff(DiffFormatter diffFormatter, DiffEntry diffEntry) throws IOException { HistogramDiff histogramDiff = new HistogramDiff(); histogramDiff.setFallbackAlgorithm(null); diffFormatter.setDiffAlgorithm(histogramDiff); return diffFormatter.toFileHeader(diffEntry); }