Message returns the note message
()
| 184 | |
| 185 | // Message returns the note message |
| 186 | func (n *Note) Message() string { |
| 187 | ret := C.GoString(C.git_note_message(n.ptr)) |
| 188 | runtime.KeepAlive(n) |
| 189 | return ret |
| 190 | } |
| 191 | |
| 192 | // NoteIterator |
| 193 | type NoteIterator struct { |
nothing calls this directly
no outgoing calls
no test coverage detected