remove unused function

This commit is contained in:
Evan Jarrett
2026-02-10 22:24:00 -06:00
parent 9723de0bcd
commit 8e45b2eee5
-5
View File
@@ -353,11 +353,6 @@ func (b *BackfillWorker) reconcileDeletions(did, collection string, foundManifes
return nil
}
// processRecord processes a single record using the default processor.
func (b *BackfillWorker) processRecord(ctx context.Context, did, collection string, record *atproto.Record) error {
return b.processRecordWith(ctx, b.processor, did, collection, record)
}
// processRecordWith processes a single record using the given processor.
// This allows backfillRepo to use a transactional processor while other callers use the default.
func (b *BackfillWorker) processRecordWith(ctx context.Context, proc *Processor, did, collection string, record *atproto.Record) error {