Просмотр исходного кода

raft: remove extra empty line in log.go

Xiang Li 11 лет назад
Родитель
Сommit
f3cef87c69
1 измененных файлов с 0 добавлено и 1 удалено
  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,