All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.build.warnings.DeprecatedWarning.scala Maven / Gradle / Ivy

The newest version!
package scala.build.warnings

import scala.build.Position
import scala.build.errors.Diagnostic.TextEdit
import scala.build.errors.{Diagnostic, Severity}

final case class DeprecatedWarning(
  message: String,
  positions: Seq[Position],
  override val textEdit: Option[TextEdit]
) extends Diagnostic {
  def severity: Severity = Severity.Warning
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy