From 2c19cbe74ae75329e71a1a6b89f951962bc560a6 Mon Sep 17 00:00:00 2001 From: 3013379 <3013379@stud.hs-mannheim.de> Date: Tue, 22 Oct 2024 14:09:44 +0200 Subject: [PATCH] =?UTF-8?q?Testat=20Push=20r=C3=BCckg=C3=A4ngig=20gemacht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/de/hs_mannheim/informatik/domain/ShopVerwaltung.java | 2 +- src/de/hs_mannheim/informatik/domain/Warenkorb.java | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/de/hs_mannheim/informatik/domain/ShopVerwaltung.java b/src/de/hs_mannheim/informatik/domain/ShopVerwaltung.java index 20cc1d4..7fbcf9b 100644 --- a/src/de/hs_mannheim/informatik/domain/ShopVerwaltung.java +++ b/src/de/hs_mannheim/informatik/domain/ShopVerwaltung.java @@ -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; } diff --git a/src/de/hs_mannheim/informatik/domain/Warenkorb.java b/src/de/hs_mannheim/informatik/domain/Warenkorb.java index 040daba..7f3ee01 100644 --- a/src/de/hs_mannheim/informatik/domain/Warenkorb.java +++ b/src/de/hs_mannheim/informatik/domain/Warenkorb.java @@ -20,7 +20,6 @@ public class Warenkorb { double gewicht = produkt.getGewicht() * anzahl; finalesGewicht += gewicht; } - finalesGewicht = Math.round(finalesGewicht * 100.0) / 100.0; return finalesGewicht; }