(ctx context.Context, docID, revID string, collectionID uint32)
| 86 | } |
| 87 | |
| 88 | func (sc *ShardedLRURevisionCache) RemoveWithRev(ctx context.Context, docID, revID string, collectionID uint32) { |
| 89 | sc.getShard(docID).RemoveWithRev(ctx, docID, revID, collectionID) |
| 90 | } |
| 91 | |
| 92 | func (sc *ShardedLRURevisionCache) RemoveWithCV(ctx context.Context, docID string, cv *Version, collectionID uint32) { |
| 93 | sc.getShard(docID).RemoveWithCV(ctx, docID, cv, collectionID) |
nothing calls this directly
no test coverage detected