Skip to content

Commit

Permalink
Update DependencyUtils.scala
Browse files Browse the repository at this point in the history
  • Loading branch information
AngersZhuuuu committed Jan 5, 2021
1 parent de0eee1 commit de1225d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private[spark] object DependencyUtils extends Logging {
ivyRepoPath: Option[String],
ivySettingsPath: Option[String]): Seq[String] = {
val exclusions: Seq[String] =
packagesExclusions.map(_.split(",")).getOrElse[Seq[String]](Nil)
packagesExclusions.map(_.split(",").toSeq).getOrElse(Nil)
// Create the IvySettings, either load from file or build defaults
val ivySettings = ivySettingsPath match {
case Some(path) =>
Expand Down

0 comments on commit de1225d

Please sign in to comment.