rdblue commented on code in PR #7731:
URL: https://github.com/apache/iceberg/pull/7731#discussion_r1220263377
##########
api/src/main/java/org/apache/iceberg/io/CloseableIterable.java:
##########
@@ -206,6 +206,10 @@ public O next() {
};
}
+ static <E> CloseableIterable<E> concat(CloseableIterable<E> i1,
CloseableIterable<E> i2) {
+ return concat(ImmutableList.of(i1, i2));
Review Comment:
There was a warning about heap pollution from the parameterized type. I
forgot whether we care about that so I just did this until someone can look at
it.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]