Skip to content

Commit

Permalink
[SPARK-21860][CORE][FOLLOWUP] fix java style error
Browse files Browse the repository at this point in the history
  • Loading branch information
mgaido91 committed Feb 9, 2018
1 parent 4b4ee26 commit 3f57f91
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 3f57f91

Please sign in to comment.