Kommentare 2: electric boogaloo

This commit is contained in:
2023-02-01 22:52:04 +01:00
parent 9b6d60a571
commit c022d68b92
16 changed files with 229 additions and 58 deletions

View File

@@ -1,12 +1,13 @@
package com.bib.essensbestellungsverwaltung;
/*
@author Malte Schulze Hobeling
*/
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
/**
* library for cli functions
* @author Malte Schulze Hobeling
*/
public class ConsoleLib {
public static void createWorkerPrompt(){
Scanner sc = new Scanner(System.in);
@@ -320,7 +321,6 @@ public class ConsoleLib {
Scanner sc = new Scanner(System.in);
double price = sc.nextDouble();
sc.nextLine();
AccountMgr.price = price;
AccountMgr.setPriceInDb();
AccountMgr.setPrice(price);
}
}