Skip to content

Commit 84c69b5

Browse files
committed
cleanup: gosimple
1 parent 586884d commit 84c69b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reflect.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func extractValue(input interface{}) (output []string) {
2727
output[i] = valueToStr(v.Index(i))
2828
}
2929
} else {
30-
output = make([]string, 1, 1)
30+
output = make([]string, 1)
3131
output[0] = valueToStr(v)
3232
}
3333

0 commit comments

Comments
 (0)