From 17c6cfea6a9d2bfa79dcd8940d37e6e60489c4df Mon Sep 17 00:00:00 2001 From: Gabor Szadovszky Date: Mon, 4 Mar 2024 18:08:19 +0100 Subject: [PATCH] fix format issues --- .../java/org/apache/parquet/hadoop/TestParquetWriterError.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/parquet-hadoop/src/test/java/org/apache/parquet/hadoop/TestParquetWriterError.java b/parquet-hadoop/src/test/java/org/apache/parquet/hadoop/TestParquetWriterError.java index 89873b4972..51fa90e1cf 100644 --- a/parquet-hadoop/src/test/java/org/apache/parquet/hadoop/TestParquetWriterError.java +++ b/parquet-hadoop/src/test/java/org/apache/parquet/hadoop/TestParquetWriterError.java @@ -174,7 +174,8 @@ public static void main(String[] args) throws Throwable { .withAllocator(allocator) .withCodecFactory(CodecFactory.createDirectCodecFactory( new Configuration(), allocator, ParquetProperties.DEFAULT_PAGE_SIZE)) - // Also validating the different direct codecs which might also have issues if an OOM happens + // Also validating the different direct codecs which might also have issues if an OOM + // happens .withCompressionCodec(codecs[RANDOM.nextInt(codecs.length)]) .build()) { for (int i = 0; i < 100_000; ++i) {