File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
dd-java-agent/src/main/java/datadog/trace/bootstrap Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public static final BootstrapInitializationTelemetry createFromForwarderPath(
4747
4848 public abstract void finish ();
4949
50- static final class None extends BootstrapInitializationTelemetry {
50+ public static final class None extends BootstrapInitializationTelemetry {
5151 static final None INSTANCE = new None ();
5252
5353 private None () {}
@@ -74,7 +74,7 @@ public void markIncomplete() {}
7474 public void finish () {}
7575 }
7676
77- static final class JsonBased extends BootstrapInitializationTelemetry {
77+ public static final class JsonBased extends BootstrapInitializationTelemetry {
7878 private final JsonSender sender ;
7979
8080 private JsonBuffer metaBuffer = new JsonBuffer ();
@@ -181,11 +181,11 @@ public void finish() {
181181 }
182182 }
183183
184- static interface JsonSender {
184+ public static interface JsonSender {
185185 public abstract void send (JsonBuffer buffer ) throws IOException ;
186186 }
187187
188- static final class ForwarderJsonSender implements JsonSender {
188+ public static final class ForwarderJsonSender implements JsonSender {
189189 private final String forwarderPath ;
190190
191191 ForwarderJsonSender (String forwarderPath ) {
You can’t perform that action at this time.
0 commit comments