Skip to content

Commit 01d7b3a

Browse files
committed
remove this.
1 parent ab31bd0 commit 01d7b3a

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/Iteration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ public final <K, V> Iteration<T> forEachLazily(
363363
public final Iteration<T> lazily(Supplier<? extends T> computation, Consumer<? super T> consumer) {
364364
requireNonNull(computation);
365365
requireNonNull(consumer);
366-
return this.lazily(() -> {
366+
return lazily(() -> {
367367
T result = computation.get();
368368
consumer.accept(result);
369369
emit(result);

0 commit comments

Comments
 (0)