Skip to content

Commit 26564f5

Browse files
committed
stream().forEach()
1 parent 5cdbb8a commit 26564f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mug/src/main/java/com/google/mu/util/stream/MoreCollectors.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ void add(T element) {
417417
}
418418

419419
Builder merge(Builder that) {
420-
that.tie.forEach(this::add);
420+
that.tie.stream().forEach(this::add);
421421
return this;
422422
}
423423

0 commit comments

Comments
 (0)