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
@@ -5,7 +5,7 @@ internal class C {
}
companion object {
JvmStatic fun main(args: Array<String>) {
@JvmStatic fun main(args: Array<String>) {
}
}
}
@@ -2,4 +2,4 @@ package to
import kotlin.reflect.KClass
annotation internal class Ann(val value: KClass<Any>)
internal annotation class Ann(val value: KClass<Any>)
@@ -1,2 +1,2 @@
Ann(String::class)
@Ann(String::class)
class X
@@ -1,3 +1,3 @@
package to
Volatile internal var field = 1
@Volatile internal var field = 1
@@ -1,7 +1,7 @@
package to
object JavaClass {
JvmStatic fun main(args: Array<String>) {
@JvmStatic fun main(args: Array<String>) {
println("Hello, world!")
}
}
@@ -1,6 +1,6 @@
package to
SomeAnnotation
@SomeAnnotation
fun foo(): String {
return ""
}