stream/mts/encoder.go: removed init func where Meta was being initialised - just doing initialisation on same line

This commit is contained in:
saxon 2019-02-04 22:14:17 +10:30
parent bad68923e6
commit 1570974ab7
1 changed files with 1 additions and 5 deletions

View File

@ -89,11 +89,7 @@ const (
)
// global Meta
var Meta *meta.Metadata
func init() {
Meta = meta.New()
}
var Meta = meta.New()
var (
patTable = standardPat.Bytes()