remove redundant return statement

Change-Id: I09f61e61c0aa2c0ecaec04eb7541374a3265879e
This commit is contained in:
Andrew Gerrand 2014-02-11 10:50:30 +11:00
parent d136d91000
commit 0a1fe281ca
1 changed files with 0 additions and 1 deletions

View File

@ -381,7 +381,6 @@ func (sh *SyncHandler) runSync(srcName string, enumSrc func(chan<- blob.SizedRef
if err := <-errch; err != nil { if err := <-errch; err != nil {
sh.addErrorToLog(fmt.Errorf("replication error for source %q, enumerate from source: %v", srcName, err)) sh.addErrorToLog(fmt.Errorf("replication error for source %q, enumerate from source: %v", srcName, err))
return nCopied
} }
return nCopied return nCopied
} }