Remove ErrFreelistOverflow error.

This commit is contained in:
Ben Johnson 2014-07-10 15:01:50 -06:00
parent ce0754b0d3
commit 88c8709cb1

View File

@ -36,10 +36,6 @@ var (
// ErrTxClosed is returned when committing or rolling back a transaction
// that has already been committed or rolled back.
ErrTxClosed = errors.New("tx closed")
// ErrFreelistOverflow is returned when the total number of free pages
// exceeds 65,536 and the freelist cannot hold any more.
ErrFreelistOverflow = errors.New("freelist overflow")
)
// These errors can occur when putting or deleting a value or a bucket.