mirror of https://github.com/minio/minio.git
Merge pull request #242 from fkautz/pr_out_renaming_appenduint_to_appenduniqint
This commit is contained in:
commit
7ee3017a1c
|
@ -53,7 +53,7 @@ func FirstUpper(str string) string {
|
|||
return strings.ToUpper(str[0:1]) + str[1:]
|
||||
}
|
||||
|
||||
func AppendUint(slice []int, i int) []int {
|
||||
func AppendUniqInt(slice []int, i int) []int {
|
||||
for _, ele := range slice {
|
||||
if ele == i {
|
||||
return slice
|
||||
|
|
Loading…
Reference in New Issue