Ver Fonte

Make ByteArrayPool internal

Him188 há 6 anos atrás
pai
commit
d5fc392ecf

+ 1 - 1
mirai-core/src/commonMain/kotlin/net.mamoe.mirai/utils/io/ByteArrayPool.kt

@@ -6,7 +6,7 @@ import kotlinx.io.pool.ObjectPool
 internal const val DEFAULT_BYTE_ARRAY_POOL_SIZE = 256
 internal const val DEFAULT_BYTE_ARRAY_SIZE = 4096
 
-val ByteArrayPool: ObjectPool<ByteArray> = ByteArrayPoolImpl
+internal val ByteArrayPool: ObjectPool<ByteArray> = ByteArrayPoolImpl
 
 private object ByteArrayPoolImpl : DefaultPool<ByteArray>(DEFAULT_BYTE_ARRAY_POOL_SIZE) {
     override fun produceInstance(): ByteArray = ByteArray(DEFAULT_BYTE_ARRAY_SIZE)