Skip to content

Commit ac07802

Browse files
koo-taejinpablobaxter
authored andcommitted
Remove duplicate allowed method in BlockHound integration (Kotlin#3260)
1 parent 84dac3b commit ac07802

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kotlinx-coroutines-debug/src/CoroutinesBlockHoundIntegration.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public class CoroutinesBlockHoundIntegration : BlockHoundIntegration {
120120
private fun BlockHound.Builder.allowBlockingCallsInArrayChannel() {
121121
for (method in listOf(
122122
"pollInternal", "isEmpty", "isFull", "isClosedForReceive", "offerInternal", "offerSelectInternal",
123-
"enqueueSend", "pollInternal", "pollSelectInternal", "enqueueReceiveInternal", "onCancelIdempotent"))
123+
"enqueueSend", "pollSelectInternal", "enqueueReceiveInternal", "onCancelIdempotent"))
124124
{
125125
allowBlockingCallsInside("kotlinx.coroutines.channels.ArrayChannel", method)
126126
}

0 commit comments

Comments
 (0)