mirror of https://github.com/spf13/viper.git
Remove useless parenthesis
This commit is contained in:
parent
7da613aa94
commit
a925fa4053
4
viper.go
4
viper.go
|
@ -1620,8 +1620,8 @@ func (v *Viper) marshalWriter(f afero.File, configType string) error {
|
|||
err := fmt.Errorf("missing key for %s", key)
|
||||
return ConfigMarshalError{err}
|
||||
}
|
||||
sectionName := key[:(lastSep)]
|
||||
keyName := key[(lastSep + 1):]
|
||||
sectionName := key[:lastSep]
|
||||
keyName := key[lastSep+1:]
|
||||
if sectionName == "default" {
|
||||
sectionName = ""
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue