From b28b0046d1968cafa73525c093fd1e1cd8599926 Mon Sep 17 00:00:00 2001 From: Zalim Bashorov Date: Thu, 11 Sep 2014 22:06:16 +0400 Subject: [PATCH] Minor: drop obsolete code. --- libraries/stdlib/src/kotlin/test/Test.kt | 3 --- 1 file changed, 3 deletions(-) diff --git a/libraries/stdlib/src/kotlin/test/Test.kt b/libraries/stdlib/src/kotlin/test/Test.kt index 446757e0a72..d0335cbfc37 100644 --- a/libraries/stdlib/src/kotlin/test/Test.kt +++ b/libraries/stdlib/src/kotlin/test/Test.kt @@ -3,9 +3,6 @@ */ package kotlin.test -// TODO should not need this - its here for the JS stuff -import java.lang.IllegalStateException - /** Asserts that the given block returns true */ public inline fun assertTrue(message: String, block: ()-> Boolean) { val actual = block()