[SPARK-21860][CORE][FOLLOWUP] fix java style error

## What changes were proposed in this pull request?

#19077 introduced a Java style error (too long line). Quick fix.

## How was this patch tested?

running `./dev/lint-java`

Author: Marco Gaido <marcogaido91@gmail.com>

Closes #20558 from mgaido91/SPARK-21860.
This commit is contained in:
Marco Gaido 2018-02-09 08:46:27 -06:00 committed by Sean Owen
parent f77270b881
commit 0fc26313f8

View file

@ -139,7 +139,8 @@ public class PlatformUtilSuite {
@Test
public void heapMemoryReuse() {
MemoryAllocator heapMem = new HeapMemoryAllocator();
// The size is less than `HeapMemoryAllocator.POOLING_THRESHOLD_BYTES`,allocate new memory every time.
// The size is less than `HeapMemoryAllocator.POOLING_THRESHOLD_BYTES`,
// allocate new memory every time.
MemoryBlock onheap1 = heapMem.allocate(513);
Object obj1 = onheap1.getBaseObject();
heapMem.free(onheap1);