main
Ruben 2022-11-22 13:29:32 +01:00
parent d6c94f0ada
commit 3f7375d639
2 changed files with 2 additions and 2 deletions

View File

@ -8,6 +8,6 @@ public class Main {
public static void main(String[] args) throws Exception { public static void main(String[] args) throws Exception {
Banksystem bs = new Banksystem("Sparkasse Mannheim"); Banksystem bs = new Banksystem("Sparkasse Mannheim");
UI ui = new UI(bs); UI ui = new UI(bs);
} }//
} }

View File

@ -35,7 +35,7 @@ public class Konto implements Serializable {
} }
public void einzahlen(long betrag, String zweck, String art, String auftraggeber) { public void einzahlen(long betrag, String zweck, String art, String auftraggeber) {
stand += betrag; stand += betrag;//literally nothing
kontobewegungen.add(new Kontobewegung(betrag, zweck, art, auftraggeber)); kontobewegungen.add(new Kontobewegung(betrag, zweck, art, auftraggeber));
} }