Removed unused import
[Mograsim.git] / era.mi / src / era / mi / logic / tests / Connector.java
index fe6d40d..99b0068 100644 (file)
@@ -9,16 +9,16 @@ import era.mi.logic.wires.WireArrayObserver;
 public class Connector implements WireArrayObserver\r
 {\r
        private final WireArray a;\r
-       private final WireArray b;\r
+//     private final WireArray b;\r
        private final WireArrayInput aI;\r
        private final WireArrayInput bI;\r
 \r
        public Connector(WireArray a, WireArray b)\r
        {\r
                if (a.length != b.length)\r
-                       throw new IllegalArgumentException(String.format("WireArray width does not match: %o, %o", a.length, b.length));\r
+                       throw new IllegalArgumentException(String.format("WireArray width does not match: %d, %d", a.length, b.length));\r
                this.a = a;\r
-               this.b = b;\r
+//             this.b = b;\r
                a.addObserver(this);\r
                b.addObserver(this);\r
                aI = a.createInput();\r