From 8e45b2eee5278480505bcdbc8f3d93ca3a530888 Mon Sep 17 00:00:00 2001 From: Evan Jarrett Date: Tue, 10 Feb 2026 22:24:00 -0600 Subject: [PATCH] remove unused function --- pkg/appview/jetstream/backfill.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkg/appview/jetstream/backfill.go b/pkg/appview/jetstream/backfill.go index b789db9..60fe268 100644 --- a/pkg/appview/jetstream/backfill.go +++ b/pkg/appview/jetstream/backfill.go @@ -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 {