aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/runtime/commands/DumpCommand.java
diff options
context:
space:
mode:
authorGravatar ccalvarin <ccalvarin@google.com>2018-03-28 08:09:07 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-03-28 08:10:21 -0700
commitb0440164eda858fa0e14f623780a00b30e20ebf7 (patch)
tree85a290c60a203d1c2dcee299c791325d1245540b /src/main/java/com/google/devtools/build/lib/runtime/commands/DumpCommand.java
parent64524c1faa22eca5921a0bdd7bb98b89d013bdaf (diff)
Remove categories from Bazel options.
These have all had a chance to be categorized with the OptionDocumentationCategory enum, and the help output already uses the enum-grouped format. The "incompatible changes" category has meaning for --all_incompatible_changes and will be removed separately. RELNOTES: None. PiperOrigin-RevId: 190773778
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/runtime/commands/DumpCommand.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/DumpCommand.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/DumpCommand.java b/src/main/java/com/google/devtools/build/lib/runtime/commands/DumpCommand.java
index b7605e4b87..cadda32a2d 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/DumpCommand.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/DumpCommand.java
@@ -78,7 +78,6 @@ public class DumpCommand implements BlazeCommand {
@Option(
name = "packages",
defaultValue = "false",
- category = "verbosity",
documentationCategory = OptionDocumentationCategory.OUTPUT_SELECTION,
effectTags = {OptionEffectTag.BAZEL_MONITORING},
help = "Dump package cache content."
@@ -88,7 +87,6 @@ public class DumpCommand implements BlazeCommand {
@Option(
name = "action_cache",
defaultValue = "false",
- category = "verbosity",
documentationCategory = OptionDocumentationCategory.OUTPUT_SELECTION,
effectTags = {OptionEffectTag.BAZEL_MONITORING},
help = "Dump action cache content."
@@ -98,7 +96,6 @@ public class DumpCommand implements BlazeCommand {
@Option(
name = "action_graph",
defaultValue = "null",
- category = "verbosity",
documentationCategory = OptionDocumentationCategory.OUTPUT_SELECTION,
effectTags = {OptionEffectTag.BAZEL_MONITORING},
help = "Dump action graph to the specified path."
@@ -109,7 +106,6 @@ public class DumpCommand implements BlazeCommand {
name = "action_graph:targets",
converter = CommaSeparatedOptionListConverter.class,
defaultValue = "...",
- category = "verbosity",
documentationCategory = OptionDocumentationCategory.OUTPUT_SELECTION,
effectTags = {OptionEffectTag.BAZEL_MONITORING},
help =
@@ -121,7 +117,6 @@ public class DumpCommand implements BlazeCommand {
@Option(
name = "action_graph:include_cmdline",
defaultValue = "false",
- category = "verbosity",
documentationCategory = OptionDocumentationCategory.OUTPUT_SELECTION,
effectTags = {OptionEffectTag.BAZEL_MONITORING},
help =
@@ -133,7 +128,6 @@ public class DumpCommand implements BlazeCommand {
@Option(
name = "rule_classes",
defaultValue = "false",
- category = "verbosity",
documentationCategory = OptionDocumentationCategory.OUTPUT_SELECTION,
effectTags = {OptionEffectTag.BAZEL_MONITORING},
help = "Dump rule classes."
@@ -143,7 +137,6 @@ public class DumpCommand implements BlazeCommand {
@Option(
name = "rules",
defaultValue = "false",
- category = "verbosity",
documentationCategory = OptionDocumentationCategory.OUTPUT_SELECTION,
effectTags = {OptionEffectTag.BAZEL_MONITORING},
help = "Dump rules, including counts and memory usage (if memory is tracked)."
@@ -153,7 +146,6 @@ public class DumpCommand implements BlazeCommand {
@Option(
name = "skylark_memory",
defaultValue = "null",
- category = "verbosity",
documentationCategory = OptionDocumentationCategory.OUTPUT_SELECTION,
effectTags = {OptionEffectTag.BAZEL_MONITORING},
help =
@@ -165,7 +157,6 @@ public class DumpCommand implements BlazeCommand {
@Option(
name = "skyframe",
defaultValue = "off",
- category = "verbosity",
converter = SkyframeDumpEnumConverter.class,
documentationCategory = OptionDocumentationCategory.OUTPUT_SELECTION,
effectTags = {OptionEffectTag.BAZEL_MONITORING},