Deprecate JVM platform annotations in favor of capitilized themselves

This commit is contained in:
Denis Zharkov
2015-09-04 14:46:46 +03:00
parent 5471a1d18a
commit 952d45dc8b
107 changed files with 290 additions and 266 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
class A {
jvmOverloads fun foo(i: Int, c: Char = 'a', s: String = "") {
JvmOverloads fun foo(i: Int, c: Char = 'a', s: String = "") {
println("foo$i$c$s")
}
jvmOverloads fun bar(s: String? = null): Int {
JvmOverloads fun bar(s: String? = null): Int {
println("s = " + s!!)
return 0
}