reformat code

This commit is contained in:
lukas-heiligenbrunner 2020-04-14 11:07:35 +02:00
parent 574c58f1c5
commit 8682ec5007
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
public class EnxorGate extends ExorGate{ public class EnxorGate extends ExorGate {
public EnxorGate(int inputnr) { public EnxorGate(int inputnr) {
super(inputnr); super(inputnr);
} }

View File

@ -1,4 +1,4 @@
public class NandGate extends AndGate{ public class NandGate extends AndGate {
public NandGate(int inputnr) { public NandGate(int inputnr) {
super(inputnr); super(inputnr);
} }

View File

@ -1,4 +1,4 @@
public class NorGate extends OrGate{ public class NorGate extends OrGate {
public NorGate(int inputnr) { public NorGate(int inputnr) {
super(inputnr); super(inputnr);
} }

View File

@ -1,4 +1,4 @@
public class NotGate extends LogicGate{ public class NotGate extends LogicGate {
public NotGate() { public NotGate() {
super(1); super(1);
} }