()
| 346 | } |
| 347 | |
| 348 | func (v *OdbObject) Free() { |
| 349 | runtime.SetFinalizer(v, nil) |
| 350 | C.git_odb_object_free(v.ptr) |
| 351 | } |
| 352 | |
| 353 | func (object *OdbObject) Id() (oid *Oid) { |
| 354 | ret := newOidFromC(C.git_odb_object_id(object.ptr)) |
nothing calls this directly
no outgoing calls
no test coverage detected