tests: apply official code style
#KT-38632 Fixed
This commit is contained in:
+5
-4
@@ -2,9 +2,10 @@ class WithComments/* Some parameter */
|
||||
/**
|
||||
* A constructor
|
||||
*/(
|
||||
/**
|
||||
* A very important property
|
||||
*/
|
||||
val veryImportant: Any) {
|
||||
/**
|
||||
* A very important property
|
||||
*/
|
||||
val veryImportant: Any
|
||||
) {
|
||||
|
||||
}
|
||||
Vendored
+4
-2
@@ -2,7 +2,9 @@ annotation class AnnParam
|
||||
|
||||
annotation class AnnProperty
|
||||
|
||||
abstract class WithComposedModifiers(@AnnParam vararg @AnnProperty
|
||||
open val x: String) {
|
||||
abstract class WithComposedModifiers(
|
||||
@AnnParam vararg @AnnProperty
|
||||
open val x: String
|
||||
) {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user