Skip to content

Commit

Permalink
bump Kotlin version
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Oct 18, 2018
1 parent 932ac29 commit 4e2db83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
group 'io.kweb'
version '0.2.21'
version '0.2.23'

buildscript {
ext.kotlin_version = '1.3.0-rc-57'
ext.kotlin_version = '1.3.0-rc-146'
ext.dokka_version = '0.9.17'

repositories {
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/io/kweb/shoebox/OrderedViewSet.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import java.util.concurrent.ConcurrentHashMap
* Created by ian on 3/14/17.
*/

class OrderedViewSet<T : Any>(val view : View<T>, val viewKey : String, val comparator: Comparator<T>) {
class OrderedViewSet<T : Any>(private val view : View<T>, val viewKey : String, val comparator: Comparator<T>) {

private val orderedList : MutableList<KeyValue<T>>
private val modificationHandlers = ConcurrentHashMap<String, Long>()
Expand Down

0 comments on commit 4e2db83

Please sign in to comment.