| 820 | } |
| 821 | |
| 822 | type objectsIter struct { |
| 823 | s *ObjectStorage |
| 824 | t plumbing.ObjectType |
| 825 | h []plumbing.Hash |
| 826 | } |
| 827 | |
| 828 | func (iter *objectsIter) Next() (plumbing.EncodedObject, error) { |
| 829 | if len(iter.h) == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected