| 100 | } |
| 101 | |
| 102 | public interface Consumer<T> { |
| 103 | |
| 104 | void accept(@Nonnull T value); |
| 105 | } |
| 106 | |
| 107 | public void forEachOutput(Consumer<PureeOutput> f) { |
| 108 | for (List<PureeOutput> outputs : new HashSet<>(sourceOutputMap.values())) { |
no outgoing calls
no test coverage detected