raft: remove unused function maybeAppend

Signed-off-by: Blake Mizerany <blake.mizerany@gmail.com>
release-2.0
Xiang Li 2014-05-25 10:05:33 -07:00 committed by Yicheng Qin
parent 74737b76cc
commit cb7b75c15f
1 changed files with 0 additions and 8 deletions

View File

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