Method
reset
reset is for testing only, and doesn't need to be thread safe.
()
Source from the content-addressed store, hash-verified
| 44 | |
| 45 | // reset is for testing only, and doesn't need to be thread safe. |
| 46 | func (g *callIDGenerator) reset() { |
| 47 | g.id = 0 |
| 48 | } |
| 49 | |
| 50 | var idGen callIDGenerator |
| 51 | |