зеркало из
1
0
Форкнуть 0

Remove extra bracket from shouldWriteAvroAsBytes method

This commit is contained in:
hasher 2020-06-29 20:46:30 +05:30
Родитель 64578e2226
Коммит 9e5f495748
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -263,8 +263,8 @@ public class FileWriter implements Closeable {
}
private boolean shouldWriteAvroAsBytes(SinkRecord record) {
return ((record.valueSchema().type() == Schema.Type.BYTES) &&
(ingestionProps.getDataFormat().equals(IngestionProperties.DATA_FORMAT.avro.toString())));
return (record.valueSchema().type() == Schema.Type.BYTES) &&
(ingestionProps.getDataFormat().equals(IngestionProperties.DATA_FORMAT.avro.toString()));
}
public void initializeRecordWriter(SinkRecord record) {