Skip to content

Commit

Permalink
[Feature][Connector-V2][FTS] Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
TyrantLucifer committed Mar 14, 2023
1 parent 3e3620b commit c484edf
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,12 @@ public void pollNext(Collector<SeaTunnelRow> output) throws Exception {
// read logic
try (final RecordReader<RowData> reader =
table.newRead().createReader(split.getSplit())) {
final RecordReaderIterator<RowData> rowIterator = new RecordReaderIterator<>(reader);
final RecordReaderIterator<RowData> rowIterator =
new RecordReaderIterator<>(reader);
while (rowIterator.hasNext()) {
final RowData row = rowIterator.next();
final SeaTunnelRow seaTunnelRow = RowConverter.convert(row, seaTunnelRowType);
final SeaTunnelRow seaTunnelRow =
RowConverter.convert(row, seaTunnelRowType);
output.collect(seaTunnelRow);
}
}
Expand Down

0 comments on commit c484edf

Please sign in to comment.