Skip to content

Commit

Permalink
removed unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
beyondeye authored and daely committed Sep 25, 2016
1 parent 6c8b88d commit 8e8fcc7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions reduks/src/main/kotlin/com/beyondeye/reduks/builders.kt
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,3 @@ fun <S> StoreEnhancer(storeEnhancerFn:(next: StoreCreator<S>)-> StoreCreator<S>)
fun <S> StoreSubscriber(subscriberFn: ()->Unit)= StoreSubscriberImpl<S>(subscriberFn)
fun <S> StoreSubscriberBuilder(storeSubscriberBuilderFn:(store: Store<S>)-> IStoreSubscriber<S>) = StoreSubscriberBuilderImpl(storeSubscriberBuilderFn)
fun <S> Thunk( thunkFn:(dispatcher: (Any)->Any, state: S)->Any) = ThunkImpl(thunkFn)

data class TestState(val a:Int, val b:Int)
val s1= StoreSubscriber<TestState>{ -> }

0 comments on commit 8e8fcc7

Please sign in to comment.