Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
nit
  • Loading branch information
pan3793 committed Jun 13, 2025
commit ed764883b5051efc79b6cf8d9d4361a2e8dc9f03
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@
package org.apache.spark.deploy

import java.io.{ByteArrayOutputStream, PrintStream}
import java.util.{Map => JMap}

import scala.jdk.CollectionConverters._
import java.util.{Collections, Map => JMap}

import org.apache.spark.SparkContext
import org.apache.spark.api.plugin.{DriverPlugin, ExecutorPlugin, PluginContext, SparkPlugin}
Expand Down Expand Up @@ -61,7 +59,7 @@ class DriverRedirectConsolePlugin extends DriverPlugin with Logging {
}
RedirectConsolePlugin.redirectConsoleToLog()
}
Map.empty[String, String].asJava
Collections.emptyMap
}
}

Expand Down