From 8d124eb77f9647fbbf46dfa141f42ebf437a274b Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Fri, 22 Jun 2018 17:34:56 +0200 Subject: [PATCH] Minor, use array literal syntax in kotlin.Metadata --- libraries/stdlib/jvm/runtime/kotlin/Metadata.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/stdlib/jvm/runtime/kotlin/Metadata.kt b/libraries/stdlib/jvm/runtime/kotlin/Metadata.kt index bc2e895ac60..668ab1197e7 100644 --- a/libraries/stdlib/jvm/runtime/kotlin/Metadata.kt +++ b/libraries/stdlib/jvm/runtime/kotlin/Metadata.kt @@ -27,20 +27,20 @@ internal annotation class Metadata( /** * The version of the metadata provided in the arguments of this annotation. */ - val mv: IntArray = intArrayOf(), + val mv: IntArray = [], /** * The version of the bytecode interface (naming conventions, signatures) of the class file annotated with this annotation. */ - val bv: IntArray = intArrayOf(), + val bv: IntArray = [], /** * Metadata in a custom format. The format may be different (or even absent) for different kinds. */ - val d1: Array = arrayOf(), + val d1: Array = [], /** * An addition to [d1]: array of strings which occur in metadata, written in plain text so that strings already present * in the constant pool are reused. These strings may be then indexed in the metadata by an integer index in this array. */ - val d2: Array = arrayOf(), + val d2: Array = [], /** * An extra string. For a multi-file part class, internal name of the facade class. */