diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-10-02 23:03:44 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-10-04 08:05:09 -0700 |
commit | 21d78121ade941adf9eaad399e6b8146298b421f (patch) | |
tree | 56cc4109f116d7b667163e960fcc7936fdf4c6aa /core/save-git.c | |
parent | de10fd4021f7fa7e203782df29456c09e07165e8 (diff) | |
download | subsurface-21d78121ade941adf9eaad399e6b8146298b421f.tar.gz |
Don't add separate country field, use taxonomy
The more I looked at the code that added the country to the dive site,
the more it seemed redundant given what we have with the taxonomy.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/save-git.c')
-rw-r--r-- | core/save-git.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/save-git.c b/core/save-git.c index be0d3920b..548664239 100644 --- a/core/save-git.c +++ b/core/save-git.c @@ -961,7 +961,6 @@ static void save_divesites(git_repository *repo, struct dir *tree) } struct membuffer site_file_name = { 0 }; put_format(&site_file_name, "Site-%08x", ds->uuid); - show_utf8(&b, "country ", ds->country, "\n"); show_utf8(&b, "name ", ds->name, "\n"); show_utf8(&b, "description ", ds->description, "\n"); show_utf8(&b, "notes ", ds->notes, "\n"); |