J2K: all annotations should be with "@"

This commit is contained in:
Valentin Kipyatkov
2015-09-15 12:47:08 +03:00
parent cc4aa6ed21
commit 7caccd7578
71 changed files with 129 additions and 129 deletions
@@ -1,10 +1,10 @@
// ERROR: This annotation is not applicable to target 'member property'
internal class A {
Deprecated("")
Volatile internal var field1 = 0
@Deprecated("")
@Volatile internal var field1 = 0
Transient internal var field2 = 1
@Transient internal var field2 = 1
// Should work even for bad modifiers
Strictfp internal var field3 = 2.0
@Strictfp internal var field3 = 2.0
}