| 87 | } |
| 88 | |
| 89 | type ObjectStorage struct { |
| 90 | Objects map[plumbing.Hash]plumbing.EncodedObject |
| 91 | Commits map[plumbing.Hash]plumbing.EncodedObject |
| 92 | Trees map[plumbing.Hash]plumbing.EncodedObject |
| 93 | Blobs map[plumbing.Hash]plumbing.EncodedObject |
| 94 | Tags map[plumbing.Hash]plumbing.EncodedObject |
| 95 | } |
| 96 | |
| 97 | func (o *ObjectStorage) NewEncodedObject() plumbing.EncodedObject { |
| 98 | return &plumbing.MemoryObject{} |
nothing calls this directly
no outgoing calls
no test coverage detected