Rolled back toString change in BitVector, moved it into ModelBitDisplay
[Mograsim.git] / plugins / net.mograsim.logic.core / src / net / mograsim / logic / core / types / BitVector.java
index ec6d12d..4b10292 100644 (file)
@@ -414,8 +414,6 @@ public final class BitVector implements StrictLogicType<BitVector>, Iterable<Bit
        @Override
        public String toString()
        {
-               if (isHighImpedance())
-                       return "-";
                StringBuilder sb = new StringBuilder(bits.length);
                for (Bit bit : bits)
                        sb.append(bit);