File tree 2 files changed +3
-14
lines changed
ui/kotlinx-coroutines-swing
2 files changed +3
-14
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
2
+ * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3
3
*/
4
4
5
- plugins {
6
- id ' org.openjfx.javafxplugin' version ' 0.0.8'
7
- }
8
-
9
- javafx {
10
- version = javafx_version
11
- modules = [ ' javafx.controls' ]
12
- configuration = ' compile'
13
- }
14
-
15
5
dependencies {
16
6
testCompile project(' :kotlinx-coroutines-jdk8' )
17
7
}
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
2
+ * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3
3
*/
4
4
5
5
package kotlinx.coroutines.swing
6
6
7
- import javafx.application.*
8
7
import kotlinx.coroutines.*
9
8
import org.junit.*
10
9
import org.junit.Test
@@ -81,7 +80,7 @@ class SwingTest : TestBase() {
81
80
join(component)
82
81
}
83
82
84
- private suspend fun join (component : SwingTest . SwingComponent ) {
83
+ private suspend fun join (component : SwingComponent ) {
85
84
component.coroutineContext[Job ]!! .join()
86
85
}
87
86
You can’t perform that action at this time.
0 commit comments