Testat Push rückgängig gemacht
parent
6116b4b21a
commit
2c19cbe74a
|
@ -53,7 +53,7 @@ public class ShopVerwaltung {
|
|||
if (produkt != null && warenkorb.getProduktanzahl().containsKey(produkt)) {
|
||||
System.out.println("Geben Sie die neue Anzahl ein:");
|
||||
int neueAnzahl = scanner.nextInt();
|
||||
if (neueAnzahl < 2) {
|
||||
if (neueAnzahl < 1) {
|
||||
System.out.println("Anzahl darf nicht kleiner als 1 sein");
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -20,7 +20,6 @@ public class Warenkorb {
|
|||
double gewicht = produkt.getGewicht() * anzahl;
|
||||
finalesGewicht += gewicht;
|
||||
}
|
||||
finalesGewicht = Math.round(finalesGewicht * 100.0) / 100.0;
|
||||
return finalesGewicht;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue