4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-07-09 16:14:04 +00:00

Clean up go.mod and vendor

This commit is contained in:
Wim
2020-01-09 18:21:10 +01:00
parent c9d5f4c898
commit b9354de8fd
23 changed files with 1965 additions and 11610 deletions

View File

@ -56,7 +56,7 @@ func (r *Ring) ContentSize() int {
} else {
difference := (r.head - r.tail)
if difference < 0 {
difference += r.capacity()
difference = -difference
}
return difference + 1
}