(iter storer.EncodedObjectIter)
| 678 | } |
| 679 | |
| 680 | func lenIterEncodedObjects(iter storer.EncodedObjectIter) int { |
| 681 | count := 0 |
| 682 | iter.ForEach(func(plumbing.EncodedObject) error { |
| 683 | count++ |
| 684 | return nil |
| 685 | }) |
| 686 | |
| 687 | return count |
| 688 | } |
| 689 | |
| 690 | func defaultSignature() *object.Signature { |
| 691 | when, _ := time.Parse(object.DateFormat, "Thu May 04 00:03:43 2017 +0200") |
no test coverage detected
searching dependent graphs…