Skip to content

Commit 7d3729e

Browse files
committed
spotless apply
1 parent ba2aae6 commit 7d3729e

File tree

1 file changed

+2
-1
lines changed
  • instrumentation/apache-httpclient-4.0/src/main/java/io/opentelemetry/javaagent/instrumentation/hypertrace/apachehttpclient/v4_0

1 file changed

+2
-1
lines changed

instrumentation/apache-httpclient-4.0/src/main/java/io/opentelemetry/javaagent/instrumentation/hypertrace/apachehttpclient/v4_0/ApacheHttpClientUtils.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ public static void traceEntity(
114114
&& contentEncoding.getValue().toLowerCase().contains("gzip");
115115
if (entity.isRepeatable()) {
116116
try {
117-
BoundedByteArrayOutputStream byteArrayOutputStream = BoundedBuffersFactory.createStream(charset);
117+
BoundedByteArrayOutputStream byteArrayOutputStream =
118+
BoundedBuffersFactory.createStream(charset);
118119
entity.writeTo(byteArrayOutputStream);
119120
InputStream contentStream = new ByteArrayInputStream(byteArrayOutputStream.toByteArray());
120121
if (isGzipEncoded) {

0 commit comments

Comments
 (0)