Fix csv header throwing error while loading products

main
CPlaiz 2025-12-13 18:23:22 +01:00
parent fb64d82bb9
commit 2d36a3d0d2
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@ public class Main {
ArrayList<String> lines;
try {
lines = readFile(path);
lines.removeFirst();
} catch (FileNotFoundException e) {
lines = new ArrayList<>();
}