Dependency updates

This commit is contained in:
Stash Dev
2019-05-27 12:34:26 -07:00
parent 69917999ef
commit 4b037e1040
359 changed files with 60172 additions and 18749 deletions

View File

@@ -67,7 +67,7 @@ func (i *Migrations) Append(m *Migration) (ok bool) {
func (i *Migrations) buildIndex() {
i.index = make(uintSlice, 0)
for version, _ := range i.migrations {
for version := range i.migrations {
i.index = append(i.index, version)
}
sort.Sort(i.index)