Browse Source

raft: remove unused function maybeAppend

Signed-off-by: Blake Mizerany <blake.mizerany@gmail.com>
Xiang Li 11 years ago
parent
commit
cb7b75c15f
1 changed files with 0 additions and 8 deletions
  1. 0 8
      raft/raft.go

+ 0 - 8
raft/raft.go

@@ -146,14 +146,6 @@ func (sm *stateMachine) append(after int, ents ...Entry) int {
 	return len(sm.log) - 1
 }
 
-func (sm *stateMachine) maybeAppend(index, logTerm int, ents ...Entry) bool {
-	if sm.isLogOk(index, logTerm) {
-		sm.append(index, ents...)
-		return true
-	}
-	return false
-}
-
 func (sm *stateMachine) isLogOk(i, term int) bool {
 	if i > sm.li() {
 		return false