commands/command_prune.go: remove extra whitespace

Prior to making changes in the "git lfs prune" command's
implementation in subsequent PRs, we first remove a bit of
spurious whitespace, just to improve consistency between
similar functions.
This commit is contained in:
Chris Darroch 2022-04-24 15:11:40 -07:00
parent b5f276e13a
commit b4e70fffa9

@ -353,7 +353,6 @@ func pruneTaskGetRetainedAtRef(gitscanner *lfs.GitScanner, ref string, retainCha
defer waitg.Done()
err := gitscanner.ScanRef(ref, func(p *lfs.WrappedPointer, err error) {
if err != nil {
errorChan <- err
return
@ -375,7 +374,6 @@ func pruneTaskGetPreviousVersionsOfRef(gitscanner *lfs.GitScanner, ref string, s
defer waitg.Done()
err := gitscanner.ScanPreviousVersions(ref, since, func(p *lfs.WrappedPointer, err error) {
if err != nil {
errorChan <- err
return