Remove redundant Text member from ItemElement

This commit is contained in:
Christian Muehlhaeuser
2019-12-13 03:00:45 +01:00
parent 0384d598d2
commit 5675184234
-3
View File
@@ -6,7 +6,6 @@ import (
)
type ItemElement struct {
Text string
Enumeration uint
}
@@ -14,13 +13,11 @@ func (e *ItemElement) Render(w io.Writer, ctx RenderContext) error {
var el *BaseElement
if e.Enumeration > 0 {
el = &BaseElement{
Token: e.Text,
Style: ctx.style[Enumeration],
Prefix: strconv.FormatInt(int64(e.Enumeration), 10),
}
} else {
el = &BaseElement{
Token: e.Text,
Style: ctx.style[Item],
}
}