aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/firrtl/Compiler.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/firrtl/Compiler.scala')
-rw-r--r--src/main/scala/firrtl/Compiler.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/main/scala/firrtl/Compiler.scala b/src/main/scala/firrtl/Compiler.scala
index 359e83bc..db4853a2 100644
--- a/src/main/scala/firrtl/Compiler.scala
+++ b/src/main/scala/firrtl/Compiler.scala
@@ -356,18 +356,6 @@ trait Transform extends TransformLike[CircuitState] with DependencyAPI[Transform
}
}
- /** Convenience method to get annotations relevant to this Transform
- *
- * @param state The [[CircuitState]] form which to extract annotations
- * @return A collection of annotations
- */
- @deprecated("Just collect the actual Annotation types the transform wants", "1.1")
- final def getMyAnnotations(state: CircuitState): Seq[Annotation] = {
- val msg = "getMyAnnotations is deprecated, use collect and match on concrete types"
- StageUtils.dramaticWarning(msg)
- state.annotations.collect { case a: LegacyAnnotation if a.transform == this.getClass => a }
- }
-
/** Executes before any transform's execute method
* @param state
* @return