aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/events/util/EventCollectionApparatus.java
diff options
context:
space:
mode:
authorGravatar ccalvarin <ccalvarin@google.com>2017-12-11 15:19:04 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2017-12-11 15:20:45 -0800
commit66693e77d0df7ab3ea1f4e8a3b7b66fabbc2af77 (patch)
tree3195ab0d6e7372d0f214cfa4b6065b91e6159549 /src/test/java/com/google/devtools/build/lib/events/util/EventCollectionApparatus.java
parent34ba7026907cfae4abfc0be2851edb48c3ee2701 (diff)
Automated rollback of commit 9321316b34767b06c3071b2cf2a4de189874fcce.
*** Reason for rollback *** Design change, 2 boolean flags instead of 1 enum flag *** Original change description *** Add --incremental_state_retention_strategy This option is intended to replace some of the uses of --batch. It lets users specify that builds should not be incremental, and how eagerly to discard the state that is kept around for incrementality. Note that for both values discard_eargerly and keep_for_life_of_build, the build graph is kept around until the next build. This may change. Will add tests for keep_for_life_of_build in a later change, for now it will warn that that feature is experimen... *** ROLLBACK_OF=178661777 RELNOTES: None. PiperOrigin-RevId: 178681472
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/events/util/EventCollectionApparatus.java')
-rw-r--r--src/test/java/com/google/devtools/build/lib/events/util/EventCollectionApparatus.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/events/util/EventCollectionApparatus.java b/src/test/java/com/google/devtools/build/lib/events/util/EventCollectionApparatus.java
index f1a002fec1..aaf3569686 100644
--- a/src/test/java/com/google/devtools/build/lib/events/util/EventCollectionApparatus.java
+++ b/src/test/java/com/google/devtools/build/lib/events/util/EventCollectionApparatus.java
@@ -39,8 +39,8 @@ public final class EventCollectionApparatus {
private List<EventHandler> handlers = new ArrayList<>();
/**
- * Determine which events the {@link #collector()} created by this apparatus will collect.
- * Default: {@link EventKind#ERRORS_WARNINGS_AND_INFO}.
+ * Determine which events the {@link #collector()} created by this apparatus
+ * will collect. Default: {@link EventKind#ERRORS_AND_WARNINGS}.
*/
public EventCollectionApparatus(Set<EventKind> mask) {
eventCollector = new EventCollector(mask);