From 9b791b4fe9b03fb11a5a0551f1a16f4395f7850c Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 10 May 2023 10:33:50 +0200 Subject: [PATCH] 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 --- cli/config/config.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cli/config/config.go b/cli/config/config.go index b7c05c3f86..c3694fadc7 100644 --- a/cli/config/config.go +++ b/cli/config/config.go @@ -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