mirror of
https://github.com/st-tu-dresden-praktikum/swt23w23
synced 2024-07-19 21:04:36 +02:00
Remove unnecessary print statements
This commit is contained in:
parent
fef48cbff5
commit
34f4fcf069
|
@ -18,7 +18,6 @@ public class CustomOrderDataInitializer implements DataInitializer {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void initialize() {
|
public void initialize() {
|
||||||
System.out.println("Initialize OrderRepository");
|
|
||||||
|
|
||||||
Map<String, Quantity> products = new HashMap<>();
|
Map<String, Quantity> products = new HashMap<>();
|
||||||
products.put("Sake Maki", Quantity.of(100));
|
products.put("Sake Maki", Quantity.of(100));
|
||||||
|
|
|
@ -54,7 +54,6 @@ public class OrderController {
|
||||||
|
|
||||||
@PostMapping("/event/checkout")
|
@PostMapping("/event/checkout")
|
||||||
public String checkout(Model model) {
|
public String checkout(Model model) {
|
||||||
System.out.println(cart);
|
|
||||||
CustomOrder myOrder = new CustomOrder(
|
CustomOrder myOrder = new CustomOrder(
|
||||||
cart.getOrderType(),
|
cart.getOrderType(),
|
||||||
LocalDateTime.MIN,
|
LocalDateTime.MIN,
|
||||||
|
|
|
@ -16,7 +16,6 @@ public class CustomCatalogEntryDataInitializer implements DataInitializer {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void initialize() {
|
public void initialize() {
|
||||||
System.out.println("Initialize CatalogEntryRepository");
|
|
||||||
|
|
||||||
Map<String, Integer> products = new HashMap<>();
|
Map<String, Integer> products = new HashMap<>();
|
||||||
products.put("Brötchen", 30);
|
products.put("Brötchen", 30);
|
||||||
|
|
Loading…
Reference in a new issue