9d0ad3f9 by fuxiaohei

code style simplify

1 parent 9457e61a
...@@ -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 }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!