@@ -333,8 +333,7 @@ options_t parse_command_line(int argc, char *argv[])
333333
334334 // --output
335335 app.add_option (" -O,--output" , options.output_backend )
336- ->description (" Set output ('pgsql' (default), 'flex', 'gazetteer' "
337- " (deprecated), 'null')." )
336+ ->description (" Set output ('pgsql' (default), 'flex', 'null')." )
338337 ->type_name (" OUTPUT" )
339338 ->group (" Output options" );
340339
@@ -635,29 +634,6 @@ options_t parse_command_line(int argc, char *argv[])
635634 ->option_text (" TYPE" )
636635 ->group (" Deprecated options" );
637636
638- // --with-forward-dependencies
639- app.add_option_function <std::string>(
640- " --with-forward-dependencies" ,
641- [&](std::string const &arg) {
642- log_warn (" The option --with-forward-dependencies is deprecated "
643- " and will soon be removed." );
644- if (arg == " false" ) {
645- options.with_forward_dependencies = false ;
646- return ;
647- }
648- if (arg == " true" ) {
649- options.with_forward_dependencies = true ;
650- return ;
651- }
652- throw fmt_error (
653- " Unknown value for --with-forward-dependencies option: {}" ,
654- arg);
655- })
656- ->description (" Propagate changes from nodes to ways and node/way "
657- " members to relations (default: true)." )
658- ->option_text (" BOOL" )
659- ->group (" Deprecated options" );
660-
661637 try {
662638 app.parse (argc, argv);
663639 } catch (...) {
@@ -718,9 +694,6 @@ options_t parse_command_line(int argc, char *argv[])
718694
719695 if (options.output_backend == " flex" ) {
720696 check_options_output_flex (app);
721- } else if (options.output_backend == " gazetteer" ) {
722- log_warn (
723- " The 'gazetteer' output is deprecated and will soon be removed." );
724697 } else if (options.output_backend == " null" ) {
725698 check_options_output_null (app);
726699 } else if (options.output_backend == " pgsql" ||
0 commit comments