[minor] Fix test source - avoid warning about uused main args
This commit is contained in:
+1
-1
@@ -4,7 +4,7 @@ import java.io.File
|
||||
object ContextClassLoaderTester {
|
||||
|
||||
@JvmStatic
|
||||
fun main(args: Array<String>) {
|
||||
fun main(@Suppress("UNUSED_PARAMETER") args: Array<String>) {
|
||||
kotlin.test.DefaultAsserter.assertTrue("", true) // this tests that kotlin-test is in the compilation and runtime classpaths
|
||||
|
||||
val contextClassLoader = Thread.currentThread().getContextClassLoader()
|
||||
|
||||
Reference in New Issue
Block a user