aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/runtime/Command.java
diff options
context:
space:
mode:
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;