Skip to content

Commit

Permalink
fix review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
zhewanglegolas committed Apr 10, 2019
1 parent d1a38ca commit 1d0ba90
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/kotlin/org/rekotlin/Store.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package org.rekotlin

import java.util.concurrent.CopyOnWriteArrayList;

/**
* Created by Taras Vozniuk on 31/07/2017.
* Copyright © 2017 GeoThings. All rights reserved.
Expand Down Expand Up @@ -54,7 +56,7 @@ class Store<State: StateType> (
middleware(dispatch, getState)(dispatchFunction)
})

val subscriptions: java.util.concurrent.CopyOnWriteArrayList<SubscriptionBox<State, Any>> = CopyOnWriteArrayList()
val subscriptions: CopyOnWriteArrayList<SubscriptionBox<State, Any>> = CopyOnWriteArrayList()

private var isDispatching = false

Expand Down

0 comments on commit 1d0ba90

Please sign in to comment.