| 13 | var _ (plumbing.EncodedObject) = &EncodedObject{} |
| 14 | |
| 15 | type EncodedObject struct { |
| 16 | dir *DotGit |
| 17 | h plumbing.Hash |
| 18 | t plumbing.ObjectType |
| 19 | sz int64 |
| 20 | } |
| 21 | |
| 22 | func (e *EncodedObject) Hash() plumbing.Hash { |
| 23 | return e.h |
nothing calls this directly
no outgoing calls
no test coverage detected