Fixed ineffectual assignments (#7555)
Don't assign values we never use.
This commit is contained in:
parent
9a965035f0
commit
b0cd3b8ab9
2 changed files with 1 additions and 2 deletions
|
@ -543,7 +543,7 @@ func ParsePatch(maxLines, maxLineCharacters, maxFiles int, reader io.Reader) (*D
|
|||
|
||||
// Get new file.
|
||||
if strings.HasPrefix(line, cmdDiffHead) {
|
||||
middle := -1
|
||||
var middle int
|
||||
|
||||
// Note: In case file name is surrounded by double quotes (it happens only in git-shell).
|
||||
// e.g. diff --git "a/xxx" "b/xxx"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue