| 876 | } |
| 877 | |
| 878 | type collectionContext struct { |
| 879 | ctx context.Context |
| 880 | tx *bolt.Tx |
| 881 | manager *mountManager |
| 882 | removed map[string]map[string]struct{} |
| 883 | } |
| 884 | |
| 885 | func (cc *collectionContext) All(fn func(gc.Node)) { |
| 886 | v1bkt := cc.tx.Bucket([]byte("v1")) |
nothing calls this directly
no outgoing calls
no test coverage detected