cli/config: Load: remove outdated FIXME

This FIXME was added in 2013 in https://github.com/moby/moby/commit/c72ff318d3fb6ab887af21cf4410e1bc8104663a
and it's both unclear which "internal golang config parser" is referred to
here. Given that 10 Years have passed, this will unlikely happen, and doesn't
warrant a FIXME here.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2023-05-10 10:33:50 +02:00
parent bc3f905a2a
commit 9b791b4fe9
-1
View File
@@ -96,7 +96,6 @@ func LoadFromReader(configData io.Reader) (*configfile.ConfigFile, error) {
// Load reads the configuration files in the given directory, and sets up
// the auth config information and returns values.
// FIXME: use the internal golang config parser
func Load(configDir string) (*configfile.ConfigFile, error) {
cfg, _, err := load(configDir)
return cfg, err