Make MODIFIERS_ORDER consistent with code style document
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
@Target(AnnotationTarget.VALUE_PARAMETER)
|
||||
annotation class ParameterAnnotation(val a: Int = 0)
|
||||
|
||||
class TestClass(vararg @ParameterAnnotation(42) words: String = arrayOf()) {
|
||||
class TestClass(@ParameterAnnotation(42) vararg words: String = arrayOf()) {
|
||||
private val words = words
|
||||
}
|
||||
Reference in New Issue
Block a user