Skip to content

Commit

Permalink
Merge pull request #237 from scala-steward/update/scala-compiler-2.13.13
Browse files Browse the repository at this point in the history
Update scala-compiler, scala-library to 2.13.13
  • Loading branch information
SethTisue authored Mar 14, 2024
2 parents 0e96fb4 + ffabc22 commit c5fe8e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ licenses := Seq(
homepage := Some(url("http://github.com/lightbend/scala-sculpt"))

scalaVersion := crossScalaVersions.value.head
crossScalaVersions := Seq("2.13.12", "2.12.19")
crossScalaVersions := Seq("2.13.13", "2.12.19")

libraryDependencies ++= Seq(
"org.scala-lang" % "scala-compiler" % scalaVersion.value % "provided",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ abstract class ExtractDependencies extends PluginComponent {

// skip packages
private def symbolsInType(tp: Type) = tp.collect {
case tp if tp != null && !(tp.typeSymbolDirect hasFlag PACKAGE) => tp.typeSymbolDirect
case part if part != null && !part.typeSymbolDirect.hasFlag(PACKAGE) =>
part.typeSymbolDirect
}.toSet
private def flattenTypeToSymbols(tp: Type): List[Symbol] =
if (tp eq null) Nil
Expand Down

0 comments on commit c5fe8e6

Please sign in to comment.