forked from forgejo/forgejo
Replace list.List
with slices (#16311)
* Replaced list with slice. * Fixed usage of pointer to temporary variable. * Replaced LIFO list with slice. * Lint * Removed type check. * Removed duplicated code. * Lint * Fixed merge. Co-authored-by: 6543 <6543@obermui.de>
This commit is contained in:
parent
23d438f565
commit
d9ef43a712
29 changed files with 183 additions and 302 deletions
|
@ -5,7 +5,6 @@
|
|||
package repository
|
||||
|
||||
import (
|
||||
"container/list"
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
|
@ -175,12 +174,11 @@ func CommitToPushCommit(commit *git.Commit) *PushCommit {
|
|||
}
|
||||
}
|
||||
|
||||
// ListToPushCommits transforms a list.List to PushCommits type.
|
||||
func ListToPushCommits(l *list.List) *PushCommits {
|
||||
var commits []*PushCommit
|
||||
for e := l.Front(); e != nil; e = e.Next() {
|
||||
commit := CommitToPushCommit(e.Value.(*git.Commit))
|
||||
commits = append(commits, commit)
|
||||
// GitToPushCommits transforms a list of git.Commits to PushCommits type.
|
||||
func GitToPushCommits(gitCommits []*git.Commit) *PushCommits {
|
||||
commits := make([]*PushCommit, 0, len(gitCommits))
|
||||
for _, commit := range gitCommits {
|
||||
commits = append(commits, CommitToPushCommit(commit))
|
||||
}
|
||||
return &PushCommits{commits, nil, "", make(map[string]string), make(map[string]*models.User)}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue