Remove unused variables

The PatchScript.hasIntralineDifference() method is not used anywhere.

Change-Id: Ie41c264a01cb18b7558fcdf1a3d802321780b895
This commit is contained in:
Dmitrii Filippov
2019-10-02 11:23:51 +02:00
committed by Han-Wen Nienhuys
parent e9a019e7b9
commit 1e2d1a63b8
2 changed files with 1 additions and 16 deletions

View File

@@ -121,7 +121,6 @@ class PatchScriptBuilder {
private PatchScript build(PatchListEntry content, CommentDetail comments, List<Patch> history)
throws IOException {
boolean intralineDifferenceIsPossible = true;
boolean intralineFailure = false;
boolean intralineTimeout = false;
@@ -134,9 +133,7 @@ class PatchScriptBuilder {
edits = new ArrayList<>(content.getEdits());
ImmutableSet<Edit> editsDueToRebase = content.getEditsDueToRebase();
if (!isModify(content)) {
intralineDifferenceIsPossible = false;
} else if (diffPrefs.intralineDifference) {
if (isModify(content) && diffPrefs.intralineDifference) {
IntraLineDiff d =
patchListCache.getIntraLineDiff(
IntraLineDiffKey.create(a.id, b.id, diffPrefs.ignoreWhitespace),
@@ -149,21 +146,17 @@ class PatchScriptBuilder {
break;
case DISABLED:
intralineDifferenceIsPossible = false;
break;
case ERROR:
intralineDifferenceIsPossible = false;
intralineFailure = true;
break;
case TIMEOUT:
intralineDifferenceIsPossible = false;
intralineTimeout = true;
break;
}
} else {
intralineDifferenceIsPossible = false;
intralineFailure = true;
}
}
@@ -223,7 +216,6 @@ class PatchScriptBuilder {
comments,
history,
hugeFile,
intralineDifferenceIsPossible,
intralineFailure,
intralineTimeout,
content.getPatchType() == Patch.PatchType.BINARY,