File tree Expand file tree Collapse file tree 3 files changed +13
-6
lines changed
instrumentation/camel-2.20/bootstrap
src/main/java/io/opentelemetry/javaagent/bootstrap/apachecamel Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,9 @@ targets:
8585 - type : gradle
8686 path : ./
8787 target : ' :instrumentation:c3p0-0.9:library'
88+ - type : gradle
89+ path : ./
90+ target : ' :instrumentation:camel-2.20:bootstrap'
8891 - type : gradle
8992 path : ./
9093 target : ' :instrumentation:camel-2.20:javaagent'
Original file line number Diff line number Diff line change 11plugins {
22 id(" otel.javaagent-bootstrap" )
3- }
3+ }
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright The OpenTelemetry Authors
3+ * SPDX-License-Identifier: Apache-2.0
4+ */
5+
16package io .opentelemetry .javaagent .bootstrap .apachecamel ;
27
3- import javax .annotation .Nullable ;
48import io .opentelemetry .context .Context ;
59import io .opentelemetry .context .Scope ;
6-
10+ import javax .annotation .Nullable ;
11+
712public class ContextWithScope {
813 @ Nullable private final ContextWithScope parent ;
914 @ Nullable private final Context context ;
1015 @ Nullable private final Scope scope ;
1116
12- public ContextWithScope (
13- ContextWithScope parent , Context context , Scope scope ) {
17+ public ContextWithScope (ContextWithScope parent , Context context , Scope scope ) {
1418 this .parent = parent ;
1519 this .context = context ;
1620 this .scope = scope ;
@@ -40,4 +44,4 @@ public void deactivate() {
4044 public String toString () {
4145 return "ContextWithScope [context=" + context + ", scope=" + scope + "]" ;
4246 }
43- }
47+ }
You can’t perform that action at this time.
0 commit comments