Deprecate some of JVM flag annotations in favor of capitilized themselves

This commit is contained in:
Denis Zharkov
2015-09-04 14:21:10 +03:00
parent 2b76941733
commit 26f9bd7b63
21 changed files with 68 additions and 68 deletions
@@ -1,8 +1,8 @@
class A {
deprecated("")
volatile var field1 = 0
Volatile var field1 = 0
transient var field2 = 1
Transient var field2 = 1
strictfp var field3 = 2.0
Strictfp var field3 = 2.0
}
+1 -1
View File
@@ -1,5 +1,5 @@
class A {
synchronized fun foo() {
Synchronized fun foo() {
bar()
}
+1 -1
View File
@@ -3,7 +3,7 @@ class A {
println("p = [$p]")
}
synchronized public fun foo() {
Synchronized public fun foo() {
foo(calcSomething())
}