Skip to content

Commit e5bf335

Browse files
committed
formatting fix
1 parent 0f1ddd1 commit e5bf335

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

awsagentprovider/src/main/java/software/amazon/opentelemetry/javaagent/providers/OtlpAwsSpanExporter.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,8 @@
3737
import software.amazon.awssdk.http.auth.spi.signer.SignedRequest;
3838

3939
/**
40-
*
41-
*
42-
* <p>This exporter is NOT meant for generic use since the payload is prefixed with AWS X-Ray
43-
* specific information.
40+
* This exporter is NOT meant for generic use since the payload is prefixed with AWS X-Ray specific
41+
* information.
4442
*/
4543
@Immutable
4644
public class OtlpAwsSpanExporter implements SpanExporter {
@@ -91,8 +89,7 @@ private final class SigV4AuthHeaderSupplier implements Supplier<Map<String, Stri
9189
public Map<String, String> get() {
9290
try {
9391
ByteArrayOutputStream encodedSpans = new ByteArrayOutputStream();
94-
TraceRequestMarshaler.create(OtlpAwsSpanExporter.this.spanData)
95-
.writeBinaryTo(encodedSpans);
92+
TraceRequestMarshaler.create(OtlpAwsSpanExporter.this.spanData).writeBinaryTo(encodedSpans);
9693

9794
SdkHttpRequest httpRequest =
9895
SdkHttpFullRequest.builder()

0 commit comments

Comments
 (0)