From 22405021d10adacf951232529c61bbd03fa9dcfc Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Wed, 22 Aug 2018 17:19:41 +0700 Subject: [PATCH] SQUASHME: Add a space --- runtime/src/main/kotlin/kotlin/util/Sort.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/src/main/kotlin/kotlin/util/Sort.kt b/runtime/src/main/kotlin/kotlin/util/Sort.kt index 8f688c7efb1..7e9e361745d 100644 --- a/runtime/src/main/kotlin/kotlin/util/Sort.kt +++ b/runtime/src/main/kotlin/kotlin/util/Sort.kt @@ -30,7 +30,7 @@ private fun > mergeSort(array: Array, start: Int, endInclusi val buffer = arrayOfNulls(array.size) as Array val result = mergeSort(array, buffer, start, endInclusive) if (result !== array) { - result.forEachIndexed { i, v-> array[i] = v } + result.forEachIndexed { i, v -> array[i] = v } } } @@ -83,7 +83,7 @@ private fun mergeSort(array: Array, start: Int, endInclusive: Int, compar val buffer = arrayOfNulls(array.size) as Array val result = mergeSort(array, buffer, start, endInclusive, comparator) if (result !== array) { - result.forEachIndexed { i, v-> array[i] = v } + result.forEachIndexed { i, v -> array[i] = v } } }