Browse Source

mvcc: remove unused store.Equals function

Anthony Romano 8 years ago
parent
commit
fd71da47d1
1 changed files with 0 additions and 10 deletions
  1. 0 10
      mvcc/kvstore.go

+ 0 - 10
mvcc/kvstore.go

@@ -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