File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/kotlin/org/nield/rxkotlinjdbc Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11buildscript {
2- ext. kotlin_version = ' 1.1.51 '
2+ ext. kotlin_version = ' 1.1.60 '
33
44 repositories {
55 mavenCentral()
@@ -19,7 +19,7 @@ repositories {
1919
2020dependencies {
2121 compile " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
22- compile ' io.reactivex.rxjava2:rxjava:2.1.3 '
22+ compile ' io.reactivex.rxjava2:rxjava:2.1.6 '
2323 testCompile ' junit:junit:4.12'
2424 testCompile ' org.xerial:sqlite-jdbc:3.16.1'
2525 testCompile ' com.zaxxer:HikariCP:2.6.1'
@@ -46,7 +46,7 @@ signing {
4646
4747group = " org.nield"
4848archivesBaseName = " rxkotlin-jdbc"
49- version = " 0.1.0 "
49+ version = " 0.1.1 "
5050
5151uploadArchives {
5252 repositories {
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ class PreparedStatementBuilder(
9393 }
9494
9595 fun parameters (vararg parameters : Any? ) {
96- furtherOps + = { it.processParameters(parameters ) }
96+ parameters.forEach { parameter(it ) }
9797 }
9898 fun parameter (parameter : Pair <String ,Any ?>) {
9999 parameter(parameter.first, parameter.second)
You can’t perform that action at this time.
0 commit comments