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 <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2018-10-02 19:23:32 +02:00 committed by Dirk Hohndel
parent 1ac90199e5
commit 9788d73d48

View file

@ -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;