mirror of https://github.com/prometheus/prometheus
Remove unused field from xorAppender
This field is not used, remove it.pull/5805/head
parent
8d373c763b
commit
2023d8a798
|
@ -89,7 +89,6 @@ func (c *XORChunk) Appender() (Appender, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
a := &xorAppender{
|
a := &xorAppender{
|
||||||
c: c,
|
|
||||||
b: c.b,
|
b: c.b,
|
||||||
t: it.t,
|
t: it.t,
|
||||||
v: it.val,
|
v: it.val,
|
||||||
|
@ -119,7 +118,6 @@ func (c *XORChunk) Iterator() Iterator {
|
||||||
}
|
}
|
||||||
|
|
||||||
type xorAppender struct {
|
type xorAppender struct {
|
||||||
c *XORChunk
|
|
||||||
b *bstream
|
b *bstream
|
||||||
|
|
||||||
t int64
|
t int64
|
||||||
|
|
Loading…
Reference in New Issue