remove unnecessary comments

This commit is contained in:
risk danger olson 2017-09-28 09:25:40 -06:00 committed by GitHub
parent 8e9fbf4e94
commit ea54e1ff3f

@ -20,12 +20,10 @@ import (
func newSingleCheckout(gitEnv config.Environment, remote string) abstractCheckout { func newSingleCheckout(gitEnv config.Environment, remote string) abstractCheckout {
manifest := getTransferManifestOperationRemote("download", remote) manifest := getTransferManifestOperationRemote("download", remote)
//
clean, ok := gitEnv.Get("filter.lfs.clean") clean, ok := gitEnv.Get("filter.lfs.clean")
if !ok || len(clean) == 0 { if !ok || len(clean) == 0 {
return &noOpCheckout{manifest: manifest} return &noOpCheckout{manifest: manifest}
} }
// */
// Get a converter from repo-relative to cwd-relative // Get a converter from repo-relative to cwd-relative
// Since writing data & calling git update-index must be relative to cwd // Since writing data & calling git update-index must be relative to cwd