From 952489af000f603172a28790eeb598dd7755cad8 Mon Sep 17 00:00:00 2001 From: Christopher Fuller Date: Sun, 23 Feb 2025 15:53:45 -0800 Subject: [PATCH] Remove duplicate `_isStarted` assignment --- Sources/Nodes/Core/AbstractFlow.swift | 3 --- 1 file changed, 3 deletions(-) diff --git a/Sources/Nodes/Core/AbstractFlow.swift b/Sources/Nodes/Core/AbstractFlow.swift index 96571ce89..eb31df6e6 100644 --- a/Sources/Nodes/Core/AbstractFlow.swift +++ b/Sources/Nodes/Core/AbstractFlow.swift @@ -105,9 +105,6 @@ open class AbstractFlow: Flow { _isStarted = true #endif _context.activate() - #if DEBUG - _isStarted = true - #endif didStart() }