(ctx context.Context, docID, revID string, collectionID uint32)
| 94 | } |
| 95 | |
| 96 | func (sc *ShardedLRURevisionCache) RemoveRevOnly(ctx context.Context, docID, revID string, collectionID uint32) { |
| 97 | sc.getShard(docID).RemoveRevOnly(ctx, docID, revID, collectionID) |
| 98 | } |
| 99 | |
| 100 | func (sc *ShardedLRURevisionCache) RemoveCVOnly(ctx context.Context, docID string, cv *Version, collectionID uint32) { |
| 101 | sc.getShard(docID).RemoveCVOnly(ctx, docID, cv, collectionID) |
nothing calls this directly
no test coverage detected