Skip to content
This repository was archived by the owner on Dec 2, 2025. It is now read-only.

Commit 472498a

Browse files
committed
baseline 5-21-24
1 parent abacabd commit 472498a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Kotlin-Coroutines_1.4/src/main/java/kotlinx/coroutines/BuildersKt.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ public static final <T> T runBlocking(CoroutineContext context, Function2<? supe
2828
NewRelic.getAgent().getTracedMethod().setMetricName("Custom","Builders","runBlocking");
2929
}
3030
NewRelic.getAgent().getTracedMethod().addCustomAttribute("Block", block.toString());
31-
if (!Utils.ignoreSuspend(block.getClass(), block)) {
31+
// if (!Utils.ignoreSuspend(block.getClass(), block)) {
3232
if (!(block instanceof NRFunction2Wrapper)) {
3333
NRFunction2Wrapper<? super CoroutineScope, ? super Continuation<? super T>, ? extends Object> wrapper = new NRFunction2Wrapper(block, name);
3434
block = wrapper;
3535
}
36-
}
36+
// }
3737
T t = Weaver.callOriginal();
3838
return t;
3939
}

0 commit comments

Comments
 (0)