From 34d1f2883802ed326ff35b65fd57a7a92188c04d Mon Sep 17 00:00:00 2001 From: Woodrow Melling Date: Wed, 20 May 2026 14:23:56 -0600 Subject: [PATCH] Remove skip-fuse Observation Bridging --- Sources/SkipAndroidBridge/Observation.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Sources/SkipAndroidBridge/Observation.swift b/Sources/SkipAndroidBridge/Observation.swift index d7314b2..b6ef43b 100644 --- a/Sources/SkipAndroidBridge/Observation.swift +++ b/Sources/SkipAndroidBridge/Observation.swift @@ -20,12 +20,12 @@ public struct Observation { } public func access(_ subject: Subject, keyPath: KeyPath) where Subject : Observable { - bridgeSupport.access(subject, keyPath: keyPath) +// bridgeSupport.access(subject, keyPath: keyPath) registrar.access(subject, keyPath: keyPath) } public func willSet(_ subject: Subject, keyPath: KeyPath) where Subject : Observable { - bridgeSupport.willSet(subject, keyPath: keyPath) +// bridgeSupport.willSet(subject, keyPath: keyPath) registrar.willSet(subject, keyPath: keyPath) } @@ -34,7 +34,7 @@ public struct Observation { } public func withMutation(of subject: Subject, keyPath: KeyPath, _ mutation: () throws -> T) rethrows -> T where Subject : Observable { - bridgeSupport.willSet(subject, keyPath: keyPath) +// bridgeSupport.willSet(subject, keyPath: keyPath) return try registrar.withMutation(of: subject, keyPath: keyPath, mutation) }