diff --git a/src/pkg/text/template/template.go b/src/pkg/text/template/template.go index d801c790ef0..a2b9062ad14 100644 --- a/src/pkg/text/template/template.go +++ b/src/pkg/text/template/template.go @@ -40,9 +40,6 @@ func New(name string) *Template { // Name returns the name of the template. func (t *Template) Name() string { - if t.name == "" { - return "" - } return t.name }