Fix dequote error in "normal" lines

Without this, quotes in normal lines were removed.
This commit is contained in:
Rene Pfeuffer
2019-11-19 10:13:58 +01:00
parent 3a3c27bb67
commit 1d2888f8e6
2 changed files with 3 additions and 2 deletions

View File

@@ -110,6 +110,7 @@ public class GitDiffCommand extends AbstractGitCommand implements DiffCommand {
return;
}
numberOfPotentialBeginning = -1;
inPotentialQuotedLine = false;
}
if (inPotentialQuotedLine && i == '"') {