pvary commented on code in PR #11837: URL: https://github.com/apache/iceberg/pull/11837#discussion_r1989403001
########## core/src/main/java/org/apache/iceberg/FileCleanupStrategy.java: ########## @@ -23,15 +23,25 @@ import java.util.function.Consumer; import org.apache.iceberg.avro.Avro; import org.apache.iceberg.exceptions.NotFoundException; +import org.apache.iceberg.io.BulkDeletionFailureException; import org.apache.iceberg.io.CloseableIterable; import org.apache.iceberg.io.FileIO; +import org.apache.iceberg.io.SupportsBulkOperations; import org.apache.iceberg.relocated.com.google.common.collect.Sets; import org.apache.iceberg.util.Tasks; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @SuppressWarnings("checkstyle:VisibilityModifier") abstract class FileCleanupStrategy { + private final Consumer<String> defaultDeleteFunc = + new Consumer<String>() { Review Comment: nit: `String` is not needed here -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org