summaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'file.c')
-rw-r--r--file.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/file.c b/file.c
index 816002eff..48936e259 100644
--- a/file.c
+++ b/file.c
@@ -927,11 +927,6 @@ int parse_csv_file(const char *filename, int timef, int depthf, int tempf, int p
previous = dive_table.nr;
ret = parse_xml_buffer(filename, mem.buffer, mem.size, &dive_table, (const char **)params);
- // mark imported dives as imported from CSV
- for (int i = previous; i < dive_table.nr; i++)
- if (same_string(get_dive(i)->dc.model, ""))
- get_dive(i)->dc.model = copy_string("Imported from CSV");
-
free(mem.buffer);
return ret;
}