This is an automated email from the ASF dual-hosted git repository.

wgtmac pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-java.git


The following commit(s) were added to refs/heads/master by this push:
     new d70b8ed5f MINOR: Fix Spotless formatting in TestCompressionCodec 
(#3551)
d70b8ed5f is described below

commit d70b8ed5fd93d5725311a75ec8808a2398c8a6f6
Author: Russell Spitzer <[email protected]>
AuthorDate: Thu May 7 20:46:31 2026 -0500

    MINOR: Fix Spotless formatting in TestCompressionCodec (#3551)
    
    Consolidate the try-with-resources allocator declaration in
    testLz4RawHeapDecompressorCanCopyLargePage onto a single line so the
    file passes spotless:check. Master CI has been failing on this since
    GH-3478 (#3486).
---
 .../java/org/apache/parquet/hadoop/codec/TestCompressionCodec.java     | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/parquet-hadoop/src/test/java/org/apache/parquet/hadoop/codec/TestCompressionCodec.java
 
b/parquet-hadoop/src/test/java/org/apache/parquet/hadoop/codec/TestCompressionCodec.java
index ae2bd87ac..2db4d77f6 100644
--- 
a/parquet-hadoop/src/test/java/org/apache/parquet/hadoop/codec/TestCompressionCodec.java
+++ 
b/parquet-hadoop/src/test/java/org/apache/parquet/hadoop/codec/TestCompressionCodec.java
@@ -195,8 +195,7 @@ public class TestCompressionCodec {
     final byte[] raw = new byte[size];
     new Random(42).nextBytes(raw);
 
-    try (TrackingByteBufferAllocator allocator =
-            TrackingByteBufferAllocator.wrap(new DirectByteBufferAllocator());
+    try (TrackingByteBufferAllocator allocator = 
TrackingByteBufferAllocator.wrap(new DirectByteBufferAllocator());
         ByteBufferReleaser releaser = new ByteBufferReleaser(allocator)) {
       CodecFactory heapCodecFactory = new CodecFactory(new Configuration(), 
pageSize);
       BytesInputCompressor compressor = 
heapCodecFactory.getCompressor(CompressionCodecName.LZ4_RAW);

Reply via email to