fix cleanup

This commit is contained in:
Igor Bartkowski 2024-10-15 06:20:09 +02:00
parent 1e9ecee355
commit 2694e7b7b0
9 changed files with 2 additions and 1 deletions

BIN
Technikladen/Client.class Normal file

Binary file not shown.

BIN
Technikladen/Order.class Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Technikladen/Product.class Normal file

Binary file not shown.

Binary file not shown.

@ -3,7 +3,7 @@ import java.util.ArrayList;
public class StorageManager {
private ArrayList<Product> storageProducts;
public StorageManager() {
this.storageProducts = new ArrayList<Product>;
this.storageProducts = new ArrayList<Product>();
}
public void addProduct(Product product) {
this.storageProducts.add(product);

Binary file not shown.

@ -1,4 +1,5 @@
import java.util.Scanner;
import java.util.ArrayList;
public class TechStore {
public static void p(String input) {