Skip to content

Commit

Permalink
remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
carryforward committed Nov 13, 2017
1 parent cd13cad commit 3b75f43
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions state/entrySyncing.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,6 @@ func (s *State) GoSyncEntries() {

lastfirstmissing := 0

found := 0

for {

ESMissing.Set(float64(len(missingMap)))
Expand All @@ -199,7 +197,6 @@ func (s *State) GoSyncEntries() {

for k := range missingMap {
if has(s, missingMap[k]) {
found++
delete(missingMap, k)
}
}
Expand Down Expand Up @@ -258,7 +255,6 @@ func (s *State) GoSyncEntries() {

// If I have the entry, then remove it from the Missing Entries list.
if has(s, entryhash) {
found++
delete(missingMap, entryhash.Fixed())
continue
}
Expand Down

0 comments on commit 3b75f43

Please sign in to comment.