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 1
1
2
2
buildscript {
3
3
ext {
4
- kotlinVersion = " 1.4.10 "
4
+ kotlinVersion = " 1.4.21 "
5
5
detektVersion = " 1.12.0-RC1"
6
6
}
7
7
repositories {
@@ -17,7 +17,7 @@ buildscript {
17
17
18
18
allprojects {
19
19
group = " org.ktorm"
20
- version = " 3.2 .0"
20
+ version = " 3.3 .0"
21
21
}
22
22
23
23
subprojects { project ->
Original file line number Diff line number Diff line change @@ -33,10 +33,10 @@ import kotlin.contracts.InvocationKind
33
33
import kotlin.contracts.contract
34
34
35
35
@PublishedApi
36
- internal val lastConnected = AtomicReference <Database >()
36
+ internal val lastConnected: AtomicReference <Database > = AtomicReference ()
37
37
38
38
@PublishedApi
39
- internal val threadLocal = ThreadLocal <Database >()
39
+ internal val threadLocal: ThreadLocal <Database > = ThreadLocal ()
40
40
41
41
/* *
42
42
* 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