diff options
| author | Schuyler Eldridge | 2019-07-30 13:55:42 -0400 |
|---|---|---|
| committer | GitHub | 2019-07-30 13:55:42 -0400 |
| commit | 135ca1bd9cbe8a6ade6d07f20e347278e08b899f (patch) | |
| tree | b3b565d1a4c8371042c5974076fcb6b5d0c71e53 /src | |
| parent | 84a1c7b1f7311ce036cb7d3d5eb652466b87dce4 (diff) | |
Fix "since" deprecation, should be "1.2" not "1.3" (#1139)
- Fixes BlackBoxSourceHelper deprecation "since"
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/scala/firrtl/transforms/BlackBoxSourceHelper.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/firrtl/transforms/BlackBoxSourceHelper.scala b/src/main/scala/firrtl/transforms/BlackBoxSourceHelper.scala index 4fe11d12..49d484ee 100644 --- a/src/main/scala/firrtl/transforms/BlackBoxSourceHelper.scala +++ b/src/main/scala/firrtl/transforms/BlackBoxSourceHelper.scala @@ -168,7 +168,7 @@ object BlackBoxSourceHelper { val defaultFileListName = "firrtl_black_box_resource_files.f" - @deprecated("Renamed to defaultFileListName, as the file list name may now be changed with an annotation", "1.3") + @deprecated("Renamed to defaultFileListName, as the file list name may now be changed with an annotation", "1.2") def fileListName = defaultFileListName def writeTextToFile(text: String, file: File): Unit = { |
