Get rid of deprecated annotations and modifiers in stdlib (besides JS)

This commit is contained in:
Denis Zharkov
2015-09-14 16:35:30 +03:00
parent 9c4564a5a6
commit 5cecaa6f87
133 changed files with 1203 additions and 1085 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ import kotlin.test.*
import org.junit.Test as test
class MathTest {
test fun testBigInteger() {
@test fun testBigInteger() {
val a = BigInteger("2")
val b = BigInteger("3")
@@ -21,7 +21,7 @@ class MathTest {
assertEquals(BigInteger("-2"), -a remainder b)
}
test fun testBigDecimal() {
@test fun testBigDecimal() {
val a = BigDecimal("2")
val b = BigDecimal("3")