From 3679e80c72e67c7c1b09a8f3f5315bc4d3e8d9ab Mon Sep 17 00:00:00 2001 From: Edward Wang Date: Thu, 12 Jul 2018 15:23:10 -0700 Subject: Remove redundant := method --- src/main/scala/chisel3/util/MixedVec.scala | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src') diff --git a/src/main/scala/chisel3/util/MixedVec.scala b/src/main/scala/chisel3/util/MixedVec.scala index cd3a1115..e09cdc4a 100644 --- a/src/main/scala/chisel3/util/MixedVec.scala +++ b/src/main/scala/chisel3/util/MixedVec.scala @@ -101,16 +101,6 @@ final class MixedVec[T <: Data](private val eltsIn: Seq[T]) extends Record with a := b } - /** Strong bulk connect, assigning elements in this MixedVec from elements in a Vec. - * - * @note the lengths of this and that must match - */ - def :=(that: Vec[T]): Unit = { - require(this.length == that.length) - for ((a, b) <- this zip that) - a := b - } - /** * Get the length of this MixedVec. * @return Number of elements in this MixedVec. -- cgit v1.2.3