Remove config.Map.MatchErr()

Obscure and often misused.
This commit is contained in:
fox.cpp 2020-03-03 22:21:08 +03:00
parent 20233fa4c4
commit 46502217ed
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
12 changed files with 86 additions and 107 deletions

View file

@ -221,7 +221,7 @@ func (store *Storage) Init(cfg *config.Map) error {
return "messages", nil
}, func(m *config.Map, node config.Node) (interface{}, error) {
if len(node.Args) != 1 {
return nil, m.MatchErr("expected 0 or 1 arguments")
return nil, config.NodeErr(node, "expected 0 or 1 arguments")
}
return node.Args[0], nil
}, &fsstoreLocation)