Skip to content

Commit

Permalink
Fix JavaDoc explaining the output from `BuildEventStreamer#consumeAsP…
Browse files Browse the repository at this point in the history
…airs`.

RELNOTES: n/a
PiperOrigin-RevId: 636928219
Change-Id: I561c48df60979d12c061a772b3cb688b1a6038f2
  • Loading branch information
michaeledgar authored and copybara-github committed May 24, 2024
1 parent 517ee9b commit 9d00cb5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -661,10 +661,10 @@ private static <T> Iterable<T> orEmpty(Iterable<T> original) {
// ....
// biConsumer.accept(L(N-1), null);
// biConsumer.accept(LN, R1);
// biConsumer.accept(R2, null);
// biConsumer.accept(null, R2);
// ...
// biConsumer.accept(R(M-1), null);
// lastConsumer.accept(RM, null);
// biConsumer.accept(null, R(M-1);
// lastConsumer.accept(null, RM);
//
// The lastConsumer is always called exactly once, even if both Iterables are empty.
@VisibleForTesting
Expand Down

0 comments on commit 9d00cb5

Please sign in to comment.