aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/scala/firrtl/transforms/InferResets.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/main/scala/firrtl/transforms/InferResets.scala b/src/main/scala/firrtl/transforms/InferResets.scala
index 8fb556fd..9e3e4a61 100644
--- a/src/main/scala/firrtl/transforms/InferResets.scala
+++ b/src/main/scala/firrtl/transforms/InferResets.scala
@@ -16,17 +16,6 @@ import scala.collection.mutable
import scala.util.Try
object InferResets {
- @deprecated("This is no longer in use and will be removed", "FIRRTL 1.3")
- final class DifferingDriverTypesException private (msg: String) extends PassException(msg)
- @deprecated("This is no longer in use and will be removed", "FIRRTL 1.3")
- object DifferingDriverTypesException {
- def apply(target: ReferenceTarget, tpes: Seq[(Type, Seq[TypeDriver])]): DifferingDriverTypesException = {
- val xs = tpes.map { case (t, ds) => s"${ds.map(_.target().serialize).mkString(", ")} of type ${t.serialize}" }
- val msg = s"${target.serialize} driven with multiple types!" + xs.mkString("\n ", "\n ", "")
- new DifferingDriverTypesException(msg)
- }
- }
-
final class InferResetsException private (msg: String) extends PassException(msg)
object InferResetsException {
private[InferResets] def apply(path: Seq[Node]): InferResetsException = {