9d0ad3f9 by fuxiaohei

code style simplify

1 parent 9457e61a
......@@ -214,7 +214,7 @@ func (c *IniConfigContainer) getdata(key string) string {
k = sectionKey[0]
}
if v, ok := c.data[section]; ok {
if vv, ok2 := v[k]; ok2 {
if vv, ok := v[k]; ok {
return vv
}
}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!