labels: remove some unused code

Signed-off-by: Bryan Boreham <bjboreham@gmail.com>
This commit is contained in:
Bryan Boreham 2023-08-13 15:14:53 +01:00
parent 657da2eb98
commit ce260b1fe1
1 changed files with 0 additions and 6 deletions

View File

@ -49,12 +49,6 @@ type Labels struct {
data string data string
} }
type labelSlice []Label
func (ls labelSlice) Len() int { return len(ls) }
func (ls labelSlice) Swap(i, j int) { ls[i], ls[j] = ls[j], ls[i] }
func (ls labelSlice) Less(i, j int) bool { return ls[i].Name < ls[j].Name }
func decodeSize(data string, index int) (int, int) { func decodeSize(data string, index int) (int, int) {
// Fast-path for common case of a single byte, value 0..127. // Fast-path for common case of a single byte, value 0..127.
b := data[index] b := data[index]