raft: remove extra empty line in log.go

This commit is contained in:
Xiang Li 2014-11-24 08:43:34 -08:00
parent 6c8e294d20
commit f3cef87c69

View File

@ -69,7 +69,6 @@ func newLog(storage Storage) *raftLog {
func (l *raftLog) String() string {
return fmt.Sprintf("unstable=%d committed=%d applied=%d", l.unstable, l.committed, l.applied)
}
// maybeAppend returns (0, false) if the entries cannot be appended. Otherwise,