File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
kotlinx-coroutines-core/src/test/kotlin/examples
kotlinx-coroutines-javafx/src/test/kotlin/examples
kotlinx-coroutines-jdk8/src/test/kotlin/examples
kotlinx-coroutines-nio/src/test/kotlin/examples
kotlinx-coroutines-swing/src/test/kotlin/examples Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,4 +19,4 @@ package examples
1919import java.text.SimpleDateFormat
2020import java.util.*
2121
22- fun log (msg : String ) = println (" ${SimpleDateFormat (" YYYYMMdd -HHmmss.sss" ).format(Date ())} [${Thread .currentThread().name} ] $msg " )
22+ fun log (msg : String ) = println (" ${SimpleDateFormat (" yyyyMMdd -HHmmss.sss" ).format(Date ())} [${Thread .currentThread().name} ] $msg " )
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ fun main(args: Array<String>) {
3838 Application .launch(FxTestApp ::class .java, * args)
3939}
4040
41- fun log (msg : String ) = println (" ${SimpleDateFormat (" YYYYMMdd -HHmmss.sss" ).format(Date ())} [${Thread .currentThread().name} ] $msg " )
41+ fun log (msg : String ) = println (" ${SimpleDateFormat (" yyyyMMdd -HHmmss.sss" ).format(Date ())} [${Thread .currentThread().name} ] $msg " )
4242
4343class FxTestApp : Application () {
4444 val buttons = FlowPane ().apply {
Original file line number Diff line number Diff line change @@ -19,4 +19,4 @@ package examples
1919import java.text.SimpleDateFormat
2020import java.util.*
2121
22- fun log (msg : String ) = println (" ${SimpleDateFormat (" YYYYMMdd -HHmmss.sss" ).format(Date ())} [${Thread .currentThread().name} ] $msg " )
22+ fun log (msg : String ) = println (" ${SimpleDateFormat (" yyyyMMdd -HHmmss.sss" ).format(Date ())} [${Thread .currentThread().name} ] $msg " )
Original file line number Diff line number Diff line change @@ -19,4 +19,4 @@ package examples
1919import java.text.SimpleDateFormat
2020import java.util.*
2121
22- fun log (msg : String ) = println (" ${SimpleDateFormat (" YYYYMMdd -HHmmss.sss" ).format(Date ())} [${Thread .currentThread().name} ] $msg " )
22+ fun log (msg : String ) = println (" ${SimpleDateFormat (" yyyyMMdd -HHmmss.sss" ).format(Date ())} [${Thread .currentThread().name} ] $msg " )
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import java.util.*
2323import java.util.concurrent.ForkJoinPool
2424import kotlin.coroutines.experimental.suspendCoroutine
2525
26- fun log (msg : String ) = println (" ${SimpleDateFormat (" YYYYMMdd -HHmmss.sss" ).format(Date ())} [${Thread .currentThread().name} ] $msg " )
26+ fun log (msg : String ) = println (" ${SimpleDateFormat (" yyyyMMdd -HHmmss.sss" ).format(Date ())} [${Thread .currentThread().name} ] $msg " )
2727
2828suspend fun makeRequest (): String {
2929 log(" Making request..." )
You can’t perform that action at this time.
0 commit comments