diff options
| author | Schuyler Eldridge | 2019-06-13 11:49:45 -0400 |
|---|---|---|
| committer | GitHub | 2019-06-13 11:49:45 -0400 |
| commit | d1d422670eb406567b2e34d7036a5cc0262309a1 (patch) | |
| tree | 2932ad57e31d7c9b9510a53ad5f1303ee46d7695 /src | |
| parent | 561e8f8b6293109b114d3a14cd09cca54482be4b (diff) | |
| parent | c7893c5b1b189c81d93f095c1a409608b597e876 (diff) | |
Merge pull request #1095 from colin4124/patch-2
Remove unused variables in `stage.phases.Checks`
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/scala/firrtl/stage/phases/Checks.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/firrtl/stage/phases/Checks.scala b/src/main/scala/firrtl/stage/phases/Checks.scala index 19109dab..1f8102b5 100644 --- a/src/main/scala/firrtl/stage/phases/Checks.scala +++ b/src/main/scala/firrtl/stage/phases/Checks.scala @@ -25,7 +25,7 @@ class Checks extends Phase { * @throws firrtl.options.OptionsException if any checks fail */ def transform(annos: AnnotationSeq): AnnotationSeq = { - val inF, inS, eam, ec, outF, td, i, foaf, comp, im, inC = collection.mutable.ListBuffer[Annotation]() + val inF, inS, eam, ec, outF, comp, im, inC = collection.mutable.ListBuffer[Annotation]() annos.foreach( _ match { case a: FirrtlFileAnnotation => a +=: inF |
