Make MODIFIERS_ORDER consistent with code style document

This commit is contained in:
Mikhail Glukhikh
2017-08-01 17:13:35 +03:00
parent 65ea9290ea
commit 9e9c4f79f5
2 changed files with 12 additions and 4 deletions
@@ -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
}