Browse Source

raft: remove extra empty line in log.go

Xiang Li 11 years ago
parent
commit
f3cef87c69
1 changed files with 0 additions and 1 deletions
  1. 0 1
      raft/log.go

+ 0 - 1
raft/log.go

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