From f2ca9d4404a20127f30959b36d0c66c8f97150ef Mon Sep 17 00:00:00 2001 From: Shepherd Date: Thu, 1 Aug 2024 11:20:24 -0400 Subject: [PATCH] Remove unnecessary check --- src/core/executors/SubscriptionExecutor.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/core/executors/SubscriptionExecutor.ts b/src/core/executors/SubscriptionExecutor.ts index 5433ef435..19919aaa9 100644 --- a/src/core/executors/SubscriptionExecutor.ts +++ b/src/core/executors/SubscriptionExecutor.ts @@ -12,10 +12,6 @@ export class SubscriptionExecutor extends ExecutorBase { } processDeltaQueue(): void { - if (this._deltaQueue.length === 0) { - return; - } - const modelSpecificDeltasArrays = this.separateDeltasByModelId(); modelSpecificDeltasArrays.forEach((deltasArray) => {