Skip to content

Commit

Permalink
improvement: Change the warning to be less worrying to users
Browse files Browse the repository at this point in the history
  • Loading branch information
tgodzik committed Jan 3, 2025
1 parent 843d80f commit b2f4935
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ case class DeprecatedScalaVersion(version: String) extends ScalaProblem {
case class DeprecatedRemovedScalaVersion(version: String) extends ScalaProblem {
private def recommendedVersion = ScalaVersions.recommendedVersion(version)
override def message: String =
s"Scala $version is no longer supported by Metals, " +
s"to get the best support possible it's recommended to update to at least $recommendedVersion."
s"Support for Scala $version is no longer being updated or fixed, " +
s"it's recommended to update to at least $recommendedVersion."
}

case class FutureScalaVersion(version: String) extends ScalaProblem {
Expand Down

0 comments on commit b2f4935

Please sign in to comment.