initialize

This commit is contained in:
Tejal Desai 2020-06-06 15:49:39 -07:00
parent 988114d022
commit 8d3bbd20f4
1 changed files with 1 additions and 0 deletions

View File

@ -44,6 +44,7 @@ func NewLayeredMap(h func(string) (string, error), c func(string) (string, error
cacheHasher: c,
}
l.layers = []map[string]string{}
l.layerHashCache = map[string]string{}
return &l
}