()
| 151 | } |
| 152 | |
| 153 | func (c *Commit) Author() *Signature { |
| 154 | cast_ptr := C.git_commit_author(c.cast_ptr) |
| 155 | ret := newSignatureFromC(cast_ptr) |
| 156 | runtime.KeepAlive(c) |
| 157 | return ret |
| 158 | } |
| 159 | |
| 160 | func (c *Commit) Committer() *Signature { |
| 161 | cast_ptr := C.git_commit_committer(c.cast_ptr) |
nothing calls this directly
no test coverage detected