diff --git a/config/defaultConfigProvider.go b/config/defaultConfigProvider.go index f840c6cb0..bb7c47412 100644 --- a/config/defaultConfigProvider.go +++ b/config/defaultConfigProvider.go @@ -15,7 +15,6 @@ package config import ( "fmt" - "sort" "strings" "sync" @@ -26,42 +25,6 @@ import ( "github.com/gohugoio/hugo/common/maps" ) -var ( - - // ConfigRootKeysSet contains all of the config map root keys. - ConfigRootKeysSet = map[string]bool{ - "build": true, - "caches": true, - "cascade": true, - "frontmatter": true, - "languages": true, - "imaging": true, - "markup": true, - "mediatypes": true, - "menus": true, - "minify": true, - "module": true, - "outputformats": true, - "params": true, - "permalinks": true, - "related": true, - "sitemap": true, - "privacy": true, - "security": true, - "taxonomies": true, - } - - // ConfigRootKeys is a sorted version of ConfigRootKeysSet. - ConfigRootKeys []string -) - -func init() { - for k := range ConfigRootKeysSet { - ConfigRootKeys = append(ConfigRootKeys, k) - } - sort.Strings(ConfigRootKeys) -} - // New creates a Provider backed by an empty maps.Params. func New() Provider { return &defaultConfigProvider{