(Consumer<? super T> action)
| 581 | } |
| 582 | |
| 583 | @Override |
| 584 | public void forEach(Consumer<? super T> action) { |
| 585 | checkNotNull(action); |
| 586 | unfiltered.forEach( |
| 587 | (@ParametricNullness T a) -> { |
| 588 | if (retainIfTrue.test(a)) { |
| 589 | action.accept(a); |
| 590 | } |
| 591 | }); |
| 592 | } |
| 593 | |
| 594 | @Override |
| 595 | @GwtIncompatible // Spliterator |
nothing calls this directly
no test coverage detected