aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/firrtl/passes/ConvertFixedToSInt.scala
diff options
context:
space:
mode:
authorLeway Colin2019-06-19 05:22:47 +0800
committerAdam Izraelevitz2019-06-18 14:22:47 -0700
commitfb4133cd76600cc8707e9a7b2f639cf120bd825c (patch)
tree7532f341dc95f293fa02e4d015d1a6a0fac102ba /src/main/scala/firrtl/passes/ConvertFixedToSInt.scala
parentd1d422670eb406567b2e34d7036a5cc0262309a1 (diff)
Use scalafix to remove unused import and deprecated procedure syntax (#1074)
* Add sbt-scalafix * Add scalafix guide to README * Remove Unused Import * Remove deprecated procedure syntax
Diffstat (limited to 'src/main/scala/firrtl/passes/ConvertFixedToSInt.scala')
-rw-r--r--src/main/scala/firrtl/passes/ConvertFixedToSInt.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/firrtl/passes/ConvertFixedToSInt.scala b/src/main/scala/firrtl/passes/ConvertFixedToSInt.scala
index 4004b8d6..67fdfea0 100644
--- a/src/main/scala/firrtl/passes/ConvertFixedToSInt.scala
+++ b/src/main/scala/firrtl/passes/ConvertFixedToSInt.scala
@@ -7,7 +7,7 @@ import firrtl.PrimOps._
import firrtl.ir._
import firrtl._
import firrtl.Mappers._
-import firrtl.Utils.{sub_type, module_type, field_type, max, error, throwInternalError}
+import firrtl.Utils.{sub_type, module_type, field_type, max, throwInternalError}
/** Replaces FixedType with SIntType, and correctly aligns all binary points
*/