This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch branch-2.4
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-2.4 by this push:
     new fd01c9e  [SPARK-29244][CORE][FOLLOWUP] Fix java lint error due to line 
length
fd01c9e is described below

commit fd01c9ede2681f6a2c5ba8b9141f8b4bbd1586d8
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Tue Oct 1 13:02:59 2019 -0700

    [SPARK-29244][CORE][FOLLOWUP] Fix java lint error due to line length
---
 .../org/apache/spark/unsafe/map/AbstractBytesToBytesMapSuite.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/core/src/test/java/org/apache/spark/unsafe/map/AbstractBytesToBytesMapSuite.java
 
b/core/src/test/java/org/apache/spark/unsafe/map/AbstractBytesToBytesMapSuite.java
index d1004d7..7741654 100644
--- 
a/core/src/test/java/org/apache/spark/unsafe/map/AbstractBytesToBytesMapSuite.java
+++ 
b/core/src/test/java/org/apache/spark/unsafe/map/AbstractBytesToBytesMapSuite.java
@@ -719,8 +719,8 @@ public abstract class AbstractBytesToBytesMapSuite {
   public void freeAfterFailedReset() {
     // SPARK-29244: BytesToBytesMap.free after a OOM reset operation should 
not cause failure.
     memoryManager.limit(5000);
-    BytesToBytesMap map =
-      new BytesToBytesMap(taskMemoryManager, blockManager, serializerManager, 
256, 0.5, 4000, false);
+    BytesToBytesMap map = new BytesToBytesMap(taskMemoryManager, blockManager, 
serializerManager,
+      256, 0.5, 4000, false);
     // Force OOM on next memory allocation.
     memoryManager.markExecutionAsOutOfMemoryOnce();
     try {


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to