Fix incorrect return value from toMap function
This commit is contained in:
parent
adef00064e
commit
119ef50471
1 changed files with 1 additions and 1 deletions
|
@ -364,5 +364,5 @@ func toMap(src interface{}) map[string]string {
|
||||||
for k, v := range set {
|
for k, v := range set {
|
||||||
dst[k] = fmt.Sprint(v)
|
dst[k] = fmt.Sprint(v)
|
||||||
}
|
}
|
||||||
return nil
|
return dst
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue