Skip to content

Commit

Permalink
Make Store not final
Browse files Browse the repository at this point in the history
  • Loading branch information
Kent White committed Aug 25, 2016
1 parent 91c33b9 commit 07b8e07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Store.swift
Expand Up @@ -20,7 +20,7 @@ public protocol StateType {
var route: Route { get set }
}

public final class Store<State : StateType> {
public class Store<State : StateType> {
public private(set) var state: State
public let reducer: AnyReducer
public let middlewares: [AnyMiddleware]
Expand Down

0 comments on commit 07b8e07

Please sign in to comment.