From 9788d73d48939031806b5e58dec497dae354d0cf Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Tue, 2 Oct 2018 19:23:32 +0200 Subject: [PATCH] Import: remove unnecessary processing of dives in DAN import On DAN-file import after each dive except the first, the dive-list was processed. This seem bogus and inefficient. An artefact from old code? In any case, remove. Signed-off-by: Berthold Stoeger --- core/import-csv.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/core/import-csv.c b/core/import-csv.c index 15255e191..c196d9283 100644 --- a/core/import-csv.c +++ b/core/import-csv.c @@ -129,14 +129,6 @@ static int parse_dan_format(const char *filename, char **params, int pnr, struct char *iter_end = NULL; unsigned int pnr_local = pnr; - /* - * Process the dives, but let the last round be parsed - * from C++ code - */ - - if (end_ptr) - process_imported_dives(false); - mem_csv.buffer = malloc(mem.size + 1); mem_csv.size = mem.size;