Skip to content

Commit 0fc2631

Browse files
mgaido91srowen
authored andcommitted
[SPARK-21860][CORE][FOLLOWUP] fix java style error
## What changes were proposed in this pull request? apache#19077 introduced a Java style error (too long line). Quick fix. ## How was this patch tested? running `./dev/lint-java` Author: Marco Gaido <[email protected]> Closes apache#20558 from mgaido91/SPARK-21860.
1 parent f77270b commit 0fc2631

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

common/unsafe/src/test/java/org/apache/spark/unsafe/PlatformUtilSuite.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ public void memoryDebugFillEnabledInTest() {
139139
@Test
140140
public void heapMemoryReuse() {
141141
MemoryAllocator heapMem = new HeapMemoryAllocator();
142-
// The size is less than `HeapMemoryAllocator.POOLING_THRESHOLD_BYTES`,allocate new memory every time.
142+
// The size is less than `HeapMemoryAllocator.POOLING_THRESHOLD_BYTES`,
143+
// allocate new memory every time.
143144
MemoryBlock onheap1 = heapMem.allocate(513);
144145
Object obj1 = onheap1.getBaseObject();
145146
heapMem.free(onheap1);

0 commit comments

Comments
 (0)