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,16 +1,16 @@
import javaApi.Anon5
internal class A
Anon5(10)
@Anon5(10)
constructor(private val a: Int, private val b: Int) {
Deprecated("") // this constructor will not be replaced by default parameter value in primary because of this annotation
@Deprecated("") // this constructor will not be replaced by default parameter value in primary because of this annotation
constructor(a: Int) : this(a, 1) {
}
}
internal class B Anon5(11)
internal class B @Anon5(11)
constructor()
internal class C Anon5(12)
internal class C @Anon5(12)
private constructor()