Skip to content

Commit

Permalink
Replaced java.io.File with File simply.
Browse files Browse the repository at this point in the history
  • Loading branch information
sarutak committed Jul 5, 2020
1 parent c5c69d1 commit 21720ac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1289,7 +1289,7 @@ class SparkSubmitSuite

val jarUrl = TestUtils.createJar(
Seq(compiledSparkPlugin, compiledExecutorPlugin),
new java.io.File(tempDir, "testplugin.jar"))
new File(tempDir, "testplugin.jar"))

val unusedJar = TestUtils.createJarWithClasses(Seq.empty)
val unusedFile = Files.createTempFile(tempDir.toPath, "unused", null)
Expand Down

0 comments on commit 21720ac

Please sign in to comment.