File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
ktorm-global/src/main/kotlin/org/ktorm/global Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11
22buildscript {
33 ext {
4- kotlinVersion = " 1.4.10 "
4+ kotlinVersion = " 1.4.21 "
55 detektVersion = " 1.12.0-RC1"
66 }
77 repositories {
@@ -17,7 +17,7 @@ buildscript {
1717
1818allprojects {
1919 group = " org.ktorm"
20- version = " 3.2 .0"
20+ version = " 3.3 .0"
2121}
2222
2323subprojects { project ->
Original file line number Diff line number Diff line change @@ -33,10 +33,10 @@ import kotlin.contracts.InvocationKind
3333import kotlin.contracts.contract
3434
3535@PublishedApi
36- internal val lastConnected = AtomicReference <Database >()
36+ internal val lastConnected: AtomicReference <Database > = AtomicReference ()
3737
3838@PublishedApi
39- internal val threadLocal = ThreadLocal <Database >()
39+ internal val threadLocal: ThreadLocal <Database > = ThreadLocal ()
4040
4141/* *
4242 * The global database instance, Ktorm uses this property to obtain a database when any SQL is executed.
You can’t perform that action at this time.
0 commit comments