mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	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:
		@@ -7,7 +7,6 @@ package git
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"bytes"
 | 
			
		||||
	"container/list"
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"io"
 | 
			
		||||
	"regexp"
 | 
			
		||||
@@ -23,7 +22,7 @@ type CompareInfo struct {
 | 
			
		||||
	MergeBase    string
 | 
			
		||||
	BaseCommitID string
 | 
			
		||||
	HeadCommitID string
 | 
			
		||||
	Commits      *list.List
 | 
			
		||||
	Commits      []*Commit
 | 
			
		||||
	NumFiles     int
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@@ -90,7 +89,7 @@ func (repo *Repository) GetCompareInfo(basePath, baseBranch, headBranch string)
 | 
			
		||||
			return nil, fmt.Errorf("parsePrettyFormatLogToList: %v", err)
 | 
			
		||||
		}
 | 
			
		||||
	} else {
 | 
			
		||||
		compareInfo.Commits = list.New()
 | 
			
		||||
		compareInfo.Commits = []*Commit{}
 | 
			
		||||
		compareInfo.MergeBase, err = GetFullCommitID(repo.Path, remoteBranch)
 | 
			
		||||
		if err != nil {
 | 
			
		||||
			compareInfo.MergeBase = remoteBranch
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user