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
+2 -2
View File
@@ -12,14 +12,14 @@ internal class X {
return super.toString()
}
Throws(CloneNotSupportedException::class)
@Throws(CloneNotSupportedException::class)
protected fun clone(): Any {
return super.clone()
}
}
internal class Y : Thread() {
Throws(CloneNotSupportedException::class)
@Throws(CloneNotSupportedException::class)
override fun clone(): Any {
return super.clone()
}