Reformatted everything. Eclipse built-in Linewrapping/Comments 140 chars
[Mograsim.git] / era.mi / src / era / mi / logic / components / gates / XorGate.java
index c20af6f..2532c9f 100644 (file)
@@ -5,12 +5,11 @@ import era.mi.logic.wires.WireArray;
 
 /**
  * Outputs 1 when the number of 1 inputs is odd.
+ * 
  * @author Fabian Stemmler
  */
-public class XorGate extends MultiInputGate
-{      
-       public XorGate(int processTime, WireArray out, WireArray... in)
-       {
+public class XorGate extends MultiInputGate {
+       public XorGate(int processTime, WireArray out, WireArray... in) {
                super(processTime, Util::xor, out, in);
        }