Skip to content

Commit

Permalink
[EXT][SPARK-21860][CORE][FOLLOWUP] fix java style error apache#20558
Browse files Browse the repository at this point in the history
PR-apache#19077 introduced a Java style error (too long line). Quick fix.
  • Loading branch information
zzcclp committed Aug 31, 2019
1 parent ca7fbe7 commit 290b040
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ public void memoryDebugFillEnabledInTest() {
@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);
Expand Down

0 comments on commit 290b040

Please sign in to comment.