// Code generated by qtc from "commit.qtpl". DO NOT EDIT. // See https://github.com/valyala/quicktemplate for details. //line commit.qtpl:1 package templates //line commit.qtpl:1 import "github.com/go-git/go-git/v5/plumbing/object" //line commit.qtpl:3 import ( qtio422016 "io" qt422016 "github.com/valyala/quicktemplate" ) //line commit.qtpl:3 var ( _ = qtio422016.Copy _ = qt422016.AcquireByteBuffer ) //line commit.qtpl:3 func StreamCommit(qw422016 *qt422016.Writer, name string, c *object.Commit, showTar bool) { //line commit.qtpl:3 qw422016.N().S(`
`) //line commit.qtpl:9 if showTar { //line commit.qtpl:9 qw422016.N().S(` `) //line commit.qtpl:13 } //line commit.qtpl:13 qw422016.N().S(`
`)
//line commit.qtpl:19
	qw422016.E().S(c.Message)
//line commit.qtpl:19
	qw422016.N().S(`
`) //line commit.qtpl:22 } //line commit.qtpl:22 func WriteCommit(qq422016 qtio422016.Writer, name string, c *object.Commit, showTar bool) { //line commit.qtpl:22 qw422016 := qt422016.AcquireWriter(qq422016) //line commit.qtpl:22 StreamCommit(qw422016, name, c, showTar) //line commit.qtpl:22 qt422016.ReleaseWriter(qw422016) //line commit.qtpl:22 } //line commit.qtpl:22 func Commit(name string, c *object.Commit, showTar bool) string { //line commit.qtpl:22 qb422016 := qt422016.AcquireByteBuffer() //line commit.qtpl:22 WriteCommit(qb422016, name, c, showTar) //line commit.qtpl:22 qs422016 := string(qb422016.B) //line commit.qtpl:22 qt422016.ReleaseByteBuffer(qb422016) //line commit.qtpl:22 return qs422016 //line commit.qtpl:22 }