Remove useless parenthesis

This commit is contained in:
gopherclass 2020-03-09 19:39:39 +09:00
parent 7da613aa94
commit a925fa4053

View file

@ -1620,8 +1620,8 @@ func (v *Viper) marshalWriter(f afero.File, configType string) error {
err := fmt.Errorf("missing key for %s", key) err := fmt.Errorf("missing key for %s", key)
return ConfigMarshalError{err} return ConfigMarshalError{err}
} }
sectionName := key[:(lastSep)] sectionName := key[:lastSep]
keyName := key[(lastSep + 1):] keyName := key[lastSep+1:]
if sectionName == "default" { if sectionName == "default" {
sectionName = "" sectionName = ""
} }