aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/runtime/Command.java
diff options
context:
space:
mode:
authorGravatar Han-Wen Nienhuys <hanwen@google.com>2015-07-31 10:45:53 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2015-08-04 09:06:00 +0000
commit35a460556ead2bf0b00300da8ce94c7901b31fd4 (patch)
tree83a04badc69e3a362474adbba064dde11ae54ce3 /src/main/java/com/google/devtools/build/lib/runtime/Command.java
parente5cf8a9df0dce674314c5a93aecb6c22ba607612 (diff)
*** Reason for rollback *** Query performance regression. -- MOS_MIGRATED_REVID=99560234
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/runtime/Command.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/Command.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/Command.java b/src/main/java/com/google/devtools/build/lib/runtime/Command.java
index c030a1d558..318e3e419b 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/Command.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/Command.java
@@ -75,16 +75,12 @@ public @interface Command {
/**
* Returns true if this command wants to write binary data to stdout.
* Enabling this flag will disable ANSI escape stripping for this command.
- * This should be used in conjunction with {@code Reporter#switchToAnsiAllowingHandler}.
- * See {@link RunCommand} for example usage.
*/
boolean binaryStdOut() default false;
/**
* Returns true if this command wants to write binary data to stderr.
* Enabling this flag will disable ANSI escape stripping for this command.
- * This should be used in conjunction with {@code Reporter#switchToAnsiAllowingHandler}.
- * See {@link RunCommand} for example usage.
*/
boolean binaryStdErr() default false;