Browse Source

labels: remove some unused code

Signed-off-by: Bryan Boreham <bjboreham@gmail.com>
pull/12681/head
Bryan Boreham 1 year ago
parent
commit
ce260b1fe1
  1. 6
      model/labels/labels_stringlabels.go

6
model/labels/labels_stringlabels.go

@ -49,12 +49,6 @@ type Labels struct {
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) {
// Fast-path for common case of a single byte, value 0..127.
b := data[index]

Loading…
Cancel
Save