Parser: remove webservice related code

Recently, the subsurface webservice was removed. Remove the corresponding
code in the parser. This removes a static variable, which was used
to generate unique dive-site ids.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2018-10-22 12:42:09 +02:00 committed by Dirk Hohndel
parent 9c6d24e50e
commit ee0fc25cf3
3 changed files with 0 additions and 20 deletions

View file

@ -1520,11 +1520,6 @@ static void uddf_importer(void)
xml_parsing_units.temperature = KELVIN;
}
static void subsurface_webservice(void)
{
import_source = SSRF_WS;
}
/*
* I'm sure this could be done as some fancy DTD rules.
* It's just not worth the headache.
@ -1557,7 +1552,6 @@ static struct nesting {
/* Import type recognition */
{ "Divinglog", DivingLog_importer },
{ "uddf", uddf_importer },
{ "output", subsurface_webservice },
{ NULL, }
};