Skip to content

Commit

Permalink
remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
gregns1 committed Nov 13, 2023
1 parent 126d4e3 commit 7ebbfe6
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions db/hybrid_logical_vector.go
Original file line number Diff line number Diff line change
Expand Up @@ -339,11 +339,3 @@ func (hlv *HybridLogicalVector) setPreviousVersion(source string, version uint64
}
hlv.PreviousVersions[source] = version
}

// setMergeVersion will take a source/version pair and add it to the HLV merge versions map
func (hlv *HybridLogicalVector) setMergeVersion(source string, version uint64) {
if hlv.MergeVersions == nil {
hlv.MergeVersions = make(map[string]uint64)
}
hlv.MergeVersions[source] = version
}

0 comments on commit 7ebbfe6

Please sign in to comment.