File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed
Kotlin-Coroutines_1.3.3/src/main/java/kotlin/coroutines/jvm/internal Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change 11package kotlin .coroutines .jvm .internal ;
22
33import com .newrelic .api .agent .NewRelic ;
4- import com .newrelic .api .agent .Token ;
54import com .newrelic .api .agent .Trace ;
65import com .newrelic .api .agent .weaver .MatchType ;
7- import com .newrelic .api .agent .weaver .NewField ;
86import com .newrelic .api .agent .weaver .Weave ;
97import com .newrelic .api .agent .weaver .Weaver ;
108
1311@ Weave (type =MatchType .BaseClass )
1412public abstract class BaseContinuationImpl {
1513
16- // @NewField
17- // private Token token = null;
18-
1914 public BaseContinuationImpl (Continuation <Object > c ) {
20- // if(token == null) {
21- // token = NewRelic.getAgent().getTransaction().getToken();
22- // }
2315 }
2416
2517 @ Trace (async =true )
2618 protected Object invokeSuspend (java .lang .Object obj ) {
27- // if(token != null) {
28- // token.linkAndExpire();
29- // token = null;
30- // }
3119 String name = null ;
3220 StackTraceElement element = getStackTraceElement ();
3321 if (element != null ) {
You can’t perform that action at this time.
0 commit comments