mvcc: remove unused store.Equals function

This commit is contained in:
Anthony Romano 2017-06-07 00:10:02 -07:00
parent 4c5f9e0910
commit fd71da47d1

View File

@ -371,16 +371,6 @@ func (s *store) Close() error {
return nil
}
func (a *store) Equal(b *store) bool {
if a.currentRev != b.currentRev {
return false
}
if a.compactMainRev != b.compactMainRev {
return false
}
return a.kvindex.Equal(b.kvindex)
}
func (s *store) saveIndex(tx backend.BatchTx) {
if s.ig == nil {
return