aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/runtime
diff options
context:
space:
mode:
authorGravatar Thiago Farina <tfarina@chromium.org>2015-05-08 14:13:27 +0000
committerGravatar Han-Wen Nienhuys <hanwen@google.com>2015-05-08 17:01:06 +0000
commit65e22fd188c458e952dc95694f49a5bedb32d7f1 (patch)
treefdba7da6778e837f75312de5a4fe52deace6288a /src/main/java/com/google/devtools/build/lib/runtime
parentbf1397e6a500eb3f580f497bfc1ddf3c3299c2dd (diff)
Fix info-keys help output.
Tested on Linux with the following command line: $ bazel help info-keys | sort | uniq -c And compared the output before and after. Fixes #175 -- Change-Id: Ia879796abf6f5b6b5742bfc9574d64fe53a650a3 MOS_MIGRATED_REVID=93127869
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/runtime')
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/HelpCommand.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/HelpCommand.java b/src/main/java/com/google/devtools/build/lib/runtime/commands/HelpCommand.java
index 227227f7af..e168462ad2 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/HelpCommand.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/HelpCommand.java
@@ -249,10 +249,6 @@ public final class HelpCommand implements BlazeCommand {
}
private void emitInfoKeysHelp(BlazeRuntime runtime, OutErr outErr) {
- for (InfoKey key : InfoKey.values()) {
- outErr.printOut(String.format("%-23s %s\n", key.getName(), key.getDescription()));
- }
-
for (BlazeModule.InfoItem item : InfoCommand.getInfoItemMap(runtime,
OptionsParser.newOptionsParser(
ImmutableList.<Class<? extends OptionsBase>>of())).values()) {