Skip to content

Commit

Permalink
unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
frostbyte73 committed Jan 16, 2024
1 parent de33d35 commit ecac992
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions pkg/jitter/buffer.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
package jitter

import (
"fmt"
"sync"
"time"

Expand Down Expand Up @@ -495,11 +494,3 @@ func before32(a, b uint32) bool {
func outsideRange(a, b uint16) bool {
return a-b > 3000 && b-a > 3000
}

func formatSN(from, to uint16) string {
if from == to {
return fmt.Sprint(from)
} else {
return fmt.Sprintf("%d-%d", from, to)
}
}

0 comments on commit ecac992

Please sign in to comment.