Browse Source

raft: one line

Xiang Li 11 years ago
parent
commit
099f4f10ea
1 changed files with 2 additions and 6 deletions
  1. 2 6
      raft/raft.go

+ 2 - 6
raft/raft.go

@@ -56,9 +56,7 @@ func (st StateType) MarshalJSON() ([]byte, error) {
 	return []byte(fmt.Sprintf("%q", st.String())), nil
 	return []byte(fmt.Sprintf("%q", st.String())), nil
 }
 }
 
 
-type progress struct {
-	match, next uint64
-}
+type progress struct{ match, next uint64 }
 
 
 func (pr *progress) update(n uint64) {
 func (pr *progress) update(n uint64) {
 	if pr.match < n {
 	if pr.match < n {
@@ -69,9 +67,7 @@ func (pr *progress) update(n uint64) {
 	}
 	}
 }
 }
 
 
-func (pr *progress) optimisticUpdate(n uint64) {
-	pr.next = n + 1
-}
+func (pr *progress) optimisticUpdate(n uint64) { pr.next = n + 1 }
 
 
 // maybeDecrTo returns false if the given to index comes from an out of order message.
 // maybeDecrTo returns false if the given to index comes from an out of order message.
 // Otherwise it decreases the progress next index and returns true.
 // Otherwise it decreases the progress next index and returns true.