From ee42edc9a5c03a7868c36506116c2a8bbe38eeb7 Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Wed, 21 Nov 2018 18:37:39 +0300 Subject: [PATCH] Minor: sort modifiers of ImmutableBlob members --- runtime/src/main/kotlin/kotlin/native/Blob.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/src/main/kotlin/kotlin/native/Blob.kt b/runtime/src/main/kotlin/kotlin/native/Blob.kt index 3daa3873018..5d3d11c5bac 100644 --- a/runtime/src/main/kotlin/kotlin/native/Blob.kt +++ b/runtime/src/main/kotlin/kotlin/native/Blob.kt @@ -17,10 +17,10 @@ public final class ImmutableBlob private constructor() { // Data layout is the same as for ByteArray, so we can share native functions. @SymbolName("Kotlin_ByteArray_get") - external public operator fun get(index: Int): Byte + public external operator fun get(index: Int): Byte @SymbolName("Kotlin_ByteArray_getArrayLength") - external private fun getArrayLength(): Int + private external fun getArrayLength(): Int /** Creates an iterator over the elements of the array. */ public operator fun iterator(): ByteIterator {