From 35484eba8a4e00a12979058defbb8989e4880b20 Mon Sep 17 00:00:00 2001 From: Charles Maria Tor Date: Mon, 5 Jul 2021 16:49:15 +1000 Subject: [PATCH] Change actions var to open for consistency --- Sources/RecombinePackage/Store/BaseStore.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/RecombinePackage/Store/BaseStore.swift b/Sources/RecombinePackage/Store/BaseStore.swift index a734eb3..af54a6a 100644 --- a/Sources/RecombinePackage/Store/BaseStore.swift +++ b/Sources/RecombinePackage/Store/BaseStore.swift @@ -85,7 +85,7 @@ public class BaseStore: StoreProtoco .store(in: &cancellables) } - public var actions: AnyPublisher { + open var actions: AnyPublisher { Publishers.Merge( _rawActions.map(Action.raw), _postMiddlewareRefinedActions.flatMap(\.publisher).map(Action.refined)