From 5775e3d8063b5ad6a956516fe080cd72a3901476 Mon Sep 17 00:00:00 2001 From: Al Date: Fri, 10 Mar 2017 19:30:18 -0500 Subject: [PATCH] [parser/cli] removing geodb loading from parser client --- src/address_parser_cli.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/address_parser_cli.c b/src/address_parser_cli.c index 70ea505e..eb02eb84 100644 --- a/src/address_parser_cli.c +++ b/src/address_parser_cli.c @@ -7,7 +7,6 @@ #include "collections.h" #include "constants.h" #include "file_utils.h" -#include "geodb.h" #include "json_encode.h" #include "libpostal.h" #include "normalize.h" @@ -26,13 +25,6 @@ bool load_address_parser_dependencies(void) { log_info("address dictionary module loaded\n"); - if (!geodb_module_setup(NULL)) { - log_error("Could not load geodb dictionaries\n"); - return false; - } - - log_info("geodb module loaded\n"); - return true; }