rename platformName annotation to jvmName

This commit is contained in:
Dmitry Jemerov
2015-08-24 21:05:26 +02:00
parent 3465126bee
commit 4743a69d76
26 changed files with 249 additions and 249 deletions

View File

@@ -1,7 +1,7 @@
import kotlin.platform.platformName;
import kotlin.jvm.jvmName;
public class FakePlatformName {
@platformName(name = "fake")
@jvmName(name = "fake")
public String foo() {
return "foo";
}