From 9ff8309f479f7044fbcec9713a184dab607b2ebb Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Tue, 18 Mar 2025 08:14:07 +0000 Subject: [PATCH] Remove commented code Some four years old; time to go --- src/libmain/common-args.hh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/libmain/common-args.hh b/src/libmain/common-args.hh index f4e62fe11..7481702f6 100644 --- a/src/libmain/common-args.hh +++ b/src/libmain/common-args.hh @@ -29,7 +29,6 @@ struct MixDryRun : virtual Args addFlag({ .longName = "dry-run", .description = "Show what this command would do without doing it.", - //.category = commonArgsCategory, .handler = {&dryRun, true}, }); } @@ -58,7 +57,6 @@ struct MixPrintJSON : virtual Args This option is only effective when `--json` is also specified. )", - //.category = commonArgsCategory, .handler = {&outputPretty, true}, }); addFlag({ @@ -70,7 +68,6 @@ struct MixPrintJSON : virtual Args See `--pretty`. )", - //.category = commonArgsCategory, .handler = {&outputPretty, false}, }); }; @@ -103,7 +100,6 @@ struct MixJSON : virtual Args, virtual MixPrintJSON addFlag({ .longName = "json", .description = "Produce output in JSON format, suitable for consumption by another program.", - //.category = commonArgsCategory, .handler = {&json, true}, }); }