diff options
| author | Jack Koenig | 2022-04-11 15:28:17 -0700 |
|---|---|---|
| committer | GitHub | 2022-04-11 15:28:17 -0700 |
| commit | 06ccf51a031d73e7b42f5f8fbba0ca75a2177ca2 (patch) | |
| tree | b60e0ffadf2749dc2ce542b933cf461d803c90c9 | |
| parent | f7b4aa8a3a759c94e0de8e1aeeacc69d3d702945 (diff) | |
Fix incorrect deprecation warning for TargetDirAnnotation (#2511)
| -rw-r--r-- | src/main/scala/firrtl/package.scala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/scala/firrtl/package.scala b/src/main/scala/firrtl/package.scala index 844d84ec..67d5e52c 100644 --- a/src/main/scala/firrtl/package.scala +++ b/src/main/scala/firrtl/package.scala @@ -10,10 +10,10 @@ package object firrtl { implicit def annoSeqToSeq(as: AnnotationSeq): Seq[Annotation] = as.toSeq /* Options as annotations compatibility items */ - @deprecated("Use firrtl.stage.TargetDirAnnotation", "FIRRTL 1.2") + @deprecated("Use firrtl.options.TargetDirAnnotation", "FIRRTL 1.2") type TargetDirAnnotation = firrtl.options.TargetDirAnnotation - @deprecated("Use firrtl.stage.TargetDirAnnotation", "FIRRTL 1.2") + @deprecated("Use firrtl.options.TargetDirAnnotation", "FIRRTL 1.2") val TargetDirAnnotation = firrtl.options.TargetDirAnnotation type WRef = ir.Reference |
