Notes added by 'git notes append'
This commit is contained in:
parent
f91a91fe94
commit
2d2921a773
|
@ -1425,3 +1425,5 @@ type PatchsetGitAuthorName []*Patchset
|
||||||
func (a PatchsetGitAuthorName) Len() int { return len(a) }
|
func (a PatchsetGitAuthorName) Len() int { return len(a) }
|
||||||
func (a PatchsetGitAuthorName) Less(i, j int) bool { return a[i].GitAuthorName < a[j].GitAuthorName }
|
func (a PatchsetGitAuthorName) Less(i, j int) bool { return a[i].GitAuthorName < a[j].GitAuthorName }
|
||||||
func (a PatchsetGitAuthorName) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
|
func (a PatchsetGitAuthorName) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
|
||||||
|
|
||||||
|
// `autogen:`
|
||||||
|
|
Loading…
Reference in New Issue