(ctx context.Context, docID string, cv *Version)
| 184 | } |
| 185 | |
| 186 | func (c *collectionRevisionCache) RemoveCVOnly(ctx context.Context, docID string, cv *Version) { |
| 187 | (*c.revCache).RemoveCVOnly(ctx, docID, cv, c.collectionID) |
| 188 | } |
| 189 | |
| 190 | // RemoveWithCV is for per collection access to Remove method |
| 191 | func (c *collectionRevisionCache) RemoveWithCV(ctx context.Context, docID string, cv *Version) { |
nothing calls this directly
no test coverage detected