Merge pull request #68 from heyitsanthony/sync-silly-if

Remove unnecessary if in batch handling
pull/82/head
Xiang Li 2017-11-26 15:54:45 -08:00 committed by GitHub
commit b4364696a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

4
db.go
View File

@ -802,9 +802,7 @@ retry:
// pass success, or bolt internal errors, to all callers
for _, c := range b.calls {
if c.err != nil {
c.err <- err
}
c.err <- err
}
break retry
}