code style simplify
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -214,7 +214,7 @@ func (c *IniConfigContainer) getdata(key string) string { | ... | @@ -214,7 +214,7 @@ func (c *IniConfigContainer) getdata(key string) string { |
| 214 | k = sectionKey[0] | 214 | k = sectionKey[0] |
| 215 | } | 215 | } |
| 216 | if v, ok := c.data[section]; ok { | 216 | if v, ok := c.data[section]; ok { |
| 217 | if vv, ok2 := v[k]; ok2 { | 217 | if vv, ok := v[k]; ok { |
| 218 | return vv | 218 | return vv |
| 219 | } | 219 | } |
| 220 | } | 220 | } | ... | ... |
-
Please register or sign in to post a comment