rdblue commented on a change in pull request #1963:
URL: https://github.com/apache/iceberg/pull/1963#discussion_r579887454
##########
File path: core/src/main/java/org/apache/iceberg/avro/AvroFileAppender.java
##########
@@ -95,10 +95,10 @@ public void close() throws IOException {
@SuppressWarnings("unchecked")
private static <D> DataFileWriter<D> newAvroWriter(
- Schema schema, PositionOutputStream stream, DatumWriter<?>
metricsAwareDatumWriter,
+ Schema schema, PositionOutputStream stream, DatumWriter<?> datumWriter,
CodecFactory codec, Map<String, String> metadata) throws IOException {
DataFileWriter<D> writer = new DataFileWriter<>(
- (DatumWriter<D>) metricsAwareDatumWriter);
+ (DatumWriter<D>) datumWriter);
Review comment:
Nit: no need for the newline any more.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]