Skip to content

Commit

Permalink
refactor: Remove no longer used nightly resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
tgodzik committed Mar 27, 2024
1 parent 8c7f800 commit 353c888
Showing 1 changed file with 1 addition and 5 deletions.
Expand Up @@ -103,7 +103,7 @@ object MtagsResolver {
}

private object ResolveType extends Enumeration {
val Regular, StablePC, Nightly = Value
val Regular, StablePC = Value
}

/**
Expand Down Expand Up @@ -160,8 +160,6 @@ object MtagsResolver {
case ResolveType.Regular => s"Resolved mtags for $scalaVersion"
case ResolveType.StablePC =>
s"Resolved Scala 3 presentation compiler for $scalaVersion"
case ResolveType.Nightly =>
s"Resolved latest nightly mtags version: $scalaVersion"
}
scribe.debug(msg)
case fail: State.Failure =>
Expand All @@ -170,8 +168,6 @@ object MtagsResolver {
s"Failed to resolve mtags for $scalaVersion"
case ResolveType.StablePC =>
s"Failed to resolve Scala 3 presentation compiler for $scalaVersion"
case ResolveType.Nightly =>
s"Failed to resolve latest nightly mtags version: $scalaVersion"
}
scribe.error(errorMsg, fail.exception)
case _ =>
Expand Down

0 comments on commit 353c888

Please sign in to comment.