Skip to content

Commit

Permalink
spotless apply
Browse files Browse the repository at this point in the history
  • Loading branch information
thugrock7 committed Dec 10, 2024
1 parent ba2aae6 commit 7d3729e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ public static void traceEntity(
&& contentEncoding.getValue().toLowerCase().contains("gzip");
if (entity.isRepeatable()) {
try {
BoundedByteArrayOutputStream byteArrayOutputStream = BoundedBuffersFactory.createStream(charset);
BoundedByteArrayOutputStream byteArrayOutputStream =
BoundedBuffersFactory.createStream(charset);
entity.writeTo(byteArrayOutputStream);
InputStream contentStream = new ByteArrayInputStream(byteArrayOutputStream.toByteArray());
if (isGzipEncoded) {
Expand Down

0 comments on commit 7d3729e

Please sign in to comment.