RussellSpitzer opened a new pull request, #3551: URL: https://github.com/apache/parquet-java/pull/3551
## Summary Master CI (Hadoop 3) has been red since #3486 landed because `parquet-hadoop`'s spotless:check is flagging `TestCompressionCodec.testLz4RawHeapDecompressorCanCopyLargePage`: ``` [ERROR] Failed to execute goal com.diffplug.spotless:spotless-maven-plugin:2.46.1:check (default) on project parquet-hadoop: The following files had format violations: [ERROR] src/test/java/org/apache/parquet/hadoop/codec/TestCompressionCodec.java [ERROR] @@ -195,8 +195,7 @@ ... [ERROR] - try (TrackingByteBufferAllocator allocator = [ERROR] - TrackingByteBufferAllocator.wrap(new DirectByteBufferAllocator()); [ERROR] + try (TrackingByteBufferAllocator allocator = TrackingByteBufferAllocator.wrap(new DirectByteBufferAllocator()); ``` This PR is just the output of `mvn spotless:apply` for that one line so the build can go green again. ## Test plan - [x] `./mvnw spotless:check` passes locally across all modules with JDK 17 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
