Skip to content

Commit 25f5063

Browse files
committed
Fix checkstyle
1 parent f1aeed8 commit 25f5063

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

core/src/main/java/org/apache/spark/util/collection/unsafe/sort/UnsafeExternalSorter.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,10 @@ private UnsafeExternalSorter(
143143
this.recordComparator = recordComparator;
144144
this.prefixComparator = prefixComparator;
145145
// Use getSizeAsKb (not bytes) to maintain backwards compatibility for units
146-
// this.fileBufferSizeBytes = (int) conf.getSizeAsKb("spark.shuffle.file.buffer", "32k") * 1024;
146+
// this.fileBufferSizeBytes = (int) conf.getSizeAsKb("spark.shuffle.file.buffer", "32k") * 1024
147147
this.fileBufferSizeBytes = 32 * 1024;
148-
// The spill metrics are stored in a new ShuffleWriteMetrics, and then discarded (this fixes SPARK-16827).
148+
// The spill metrics are stored in a new ShuffleWriteMetrics,
149+
// and then discarded (this fixes SPARK-16827).
149150
// TODO: Instead, separate spill metrics should be stored and reported (tracked in SPARK-3577).
150151
this.writeMetrics = new ShuffleWriteMetrics();
151152

0 commit comments

Comments
 (0)