text.pretty: remove unused debug info options
[babeltrace.git] / plugins / text / pretty / pretty.c
index cbc2feba8f003675792790ac26de512a6b4eec6d..87efe05aa1cb441801b29867389023fe6d237897 100644 (file)
@@ -53,9 +53,6 @@ static
 const char *plugin_options[] = {
        "color",
        "output-path",
-       "debug-info-dir",
-       "debug-info-target-prefix",
-       "debug-info-full-path",
        "no-delta",
        "clock-cycles",
        "clock-seconds",
@@ -92,8 +89,6 @@ void destroy_pretty_data(struct pretty_component *pretty)
                }
        }
        g_free(pretty->options.output_path);
-       g_free(pretty->options.debug_info_dir);
-       g_free(pretty->options.debug_info_target_prefix);
        g_free(pretty);
 }
 
@@ -414,27 +409,6 @@ enum bt_component_status apply_params(struct pretty_component *pretty,
                goto end;
        }
 
-       ret = apply_one_string("debug-info-dir",
-                       params,
-                       &pretty->options.debug_info_dir);
-       if (ret != BT_COMPONENT_STATUS_OK) {
-               goto end;
-       }
-
-       ret = apply_one_string("debug-info-target-prefix",
-                       params,
-                       &pretty->options.debug_info_target_prefix);
-       if (ret != BT_COMPONENT_STATUS_OK) {
-               goto end;
-       }
-
-       value = false;          /* Default. */
-       ret = apply_one_bool("debug-info-full-path", params, &value, NULL);
-       if (ret != BT_COMPONENT_STATUS_OK) {
-               goto end;
-       }
-       pretty->options.debug_info_full_path = value;
-
        value = false;          /* Default. */
        ret = apply_one_bool("no-delta", params, &value, NULL);
        if (ret != BT_COMPONENT_STATUS_OK) {
This page took 0.031832 seconds and 4 git commands to generate.