Completely changed the structure and switched to Eclipse Plugin.
[Mograsim.git] / net.mograsim.logic.core / src / net / mograsim / logic / core / wires / Wire.java
index 57c6e6a..86add62 100644 (file)
@@ -61,7 +61,7 @@ public class Wire
                BitVectorMutator mutator = BitVectorMutator.empty();\r
                for (ReadWriteEnd wireArrayEnd : inputs)\r
                        mutator.join(wireArrayEnd.getInputValues());\r
-               setNewValues(mutator.get());\r
+               setNewValues(mutator.toBitVector());\r
        }\r
 \r
        private void setNewValues(BitVector newValues)\r
@@ -495,7 +495,7 @@ public class Wire
                                        continue;\r
                                mutator.join(wireEnd.inputValues);\r
                        }\r
-                       return mutator.get();\r
+                       return mutator.toBitVector();\r
                }\r
 \r
                @Override\r