Skip to content

Commit 8c273b4

Browse files
ueshinMarcelo Vanzin
authored andcommitted
[SPARK-23020][CORE][FOLLOWUP] Fix Java style check issues.
## What changes were proposed in this pull request? This is a follow-up of #20297 which broke lint-java checks. This pr fixes the lint-java issues. ``` [ERROR] src/test/java/org/apache/spark/launcher/BaseSuite.java:[21,8] (imports) UnusedImports: Unused import - java.util.concurrent.TimeUnit. [ERROR] src/test/java/org/apache/spark/launcher/SparkLauncherSuite.java:[27,8] (imports) UnusedImports: Unused import - java.util.concurrent.TimeUnit. ``` ## How was this patch tested? Checked manually in my local environment. Author: Takuya UESHIN <[email protected]> Closes #20376 from ueshin/issues/SPARK-23020/fup1.
1 parent e18d6f5 commit 8c273b4

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

core/src/test/java/org/apache/spark/launcher/SparkLauncherSuite.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
import java.util.List;
2525
import java.util.Map;
2626
import java.util.Properties;
27-
import java.util.concurrent.TimeUnit;
2827

2928
import org.junit.Test;
3029
import static org.junit.Assert.*;

launcher/src/test/java/org/apache/spark/launcher/BaseSuite.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
package org.apache.spark.launcher;
1919

2020
import java.time.Duration;
21-
import java.util.concurrent.TimeUnit;
2221

2322
import org.junit.After;
2423
import org.slf4j.bridge.SLF4JBridgeHandler;

0 commit comments

Comments
 (0)