Skip to content

Commit a3e7cb8

Browse files
committed
add space after //
1 parent cea4cd3 commit a3e7cb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/scala/org/apache/spark/util/ShutdownHookManager.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ private[spark] object ShutdownHookManager extends Logging {
5757
// Add a shutdown hook to delete the temp dirs when the JVM exits
5858
addShutdownHook(TEMP_DIR_SHUTDOWN_PRIORITY) { () =>
5959
logInfo("Shutdown hook called")
60-
//we need to materialize the paths to delete because deleteRecursively removes items from
61-
//shutdownDeletePaths as we are traversing through it.
60+
// we need to materialize the paths to delete because deleteRecursively removes items from
61+
// shutdownDeletePaths as we are traversing through it.
6262
shutdownDeletePaths.toArray.foreach { dirPath =>
6363
try {
6464
logInfo("Deleting directory " + dirPath)

0 commit comments

Comments
 (0)