Skip to content

Commit 3b478eb

Browse files
committed
Change public to open
1 parent 157e2e7 commit 3b478eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/CoreTypes/Store.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ open class Store<ObservableProperty: ObservablePropertyType> {
2525
self.middleware = middleware
2626
}
2727

28-
public func dispatch(_ actions: Action...) {
28+
open func dispatch(_ actions: Action...) {
2929
actions.forEach { action in
3030
let dispatchFunction: (Action...) -> Void = { [weak self] (actions: Action...) in
3131
actions.forEach { self?.dispatch($0) }

0 commit comments

Comments
 (0)