goimports -w

This commit is contained in:
Ian Norden 2020-05-30 12:10:48 -05:00
parent 8d3cc7f876
commit 3a3d8180e9
3 changed files with 3 additions and 3 deletions

View File

@ -96,4 +96,4 @@ func (b *Batch) Reset() {
panic(err) panic(err)
} }
b.size = 0 b.size = 0
} }

View File

@ -239,4 +239,4 @@ func (d *Database) TruncateAncients(n uint64) error {
// Sync flushes all in-memory ancient store data to disk // Sync flushes all in-memory ancient store data to disk
func (d *Database) Sync() error { func (d *Database) Sync() error {
return errNotSupported return errNotSupported
} }

View File

@ -79,4 +79,4 @@ func (i *Iterator) Value() []byte {
// Release should always succeed and can be called multiple times without causing error // Release should always succeed and can be called multiple times without causing error
func (i *Iterator) Release() { func (i *Iterator) Release() {
i.db.Close() i.db.Close()
} }