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 // global Meta
var Meta *meta.Metadata var Meta = meta.New()
func init() {
Meta = meta.New()
}
var ( var (
patTable = standardPat.Bytes() patTable = standardPat.Bytes()