Updated kotlin methods

master
Robinson 2022-03-03 00:21:32 +01:00
parent b0cf03b2d9
commit 493426a09a
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ internal class SuspendingPool<T> constructor(
for (x in 0 until size) {
val e = newInstance()
poolObject.onReturn(e)
channel.offer(e)
channel.trySend(e)
}
}
}