Did some clean up
[Mograsim.git] / era.mi / src / era / mi / logic / components / Demux.java
index 64f5d26..24fd29b 100644 (file)
@@ -1,15 +1,13 @@
 package era.mi.logic.components;\r
 \r
-import java.util.Arrays;\r
-import java.util.Collections;\r
 import java.util.List;\r
 \r
 import era.mi.logic.wires.WireArray;\r
 import era.mi.logic.wires.WireArray.WireArrayEnd;\r
 \r
 /**\r
- * Models a multiplexer. Takes an arbitrary amount of input {@link WireArray}s, one of which, as determined by select, is put through to the\r
- * output.\r
+ * Models a multiplexer. Takes an arbitrary amount of outputs {@link WireArray}s, one of which, as determined by select, receives the input\r
+ * signal.\r
  * \r
  * @author Fabian Stemmler\r
  *\r
@@ -23,11 +21,11 @@ public class Demux extends BasicComponent
        private int selected = -1;\r
 \r
        /**\r
-        * Input {@link WireArray}s and out must be of uniform length\r
+        * Output {@link WireArray}s and in must be of uniform length\r
         * \r
-        * @param out     Must be of uniform length with all inputs.\r
-        * @param select  Indexes the input array which is to be mapped to the output. Must have enough bits to index all inputs.\r
-        * @param outputs One of these inputs is mapped to the output, depending on the select bits\r
+        * @param in      Must be of uniform length with all outputs.\r
+        * @param select  Indexes the output array to which the input is mapped. Must have enough bits to index all outputs.\r
+        * @param outputs One of these outputs receives the input signal, depending on the select bits\r
         */\r
        public Demux(int processTime, WireArray in, WireArray select, WireArray... outputs)\r
        {\r
@@ -73,12 +71,12 @@ public class Demux extends BasicComponent
        @Override\r
        public List<WireArray> getAllInputs()\r
        {\r
-               return Collections.unmodifiableList(Arrays.asList(in, select));\r
+               return List.of(in, select);\r
        }\r
 \r
        @Override\r
        public List<WireArray> getAllOutputs()\r
        {\r
-               return Collections.unmodifiableList(Arrays.asList(outputs));\r
+               return List.of(outputs);\r
        }\r
 }\r