Skip to content

Commit

Permalink
[FLINK-36315][cdc-base]Fix code style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
molin.lxd committed Oct 8, 2024
1 parent 9d94c8a commit 6c00324
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,11 @@ protected void reportMetrics(SourceRecord element) {
}
}

/**
* Collector for outputting records.
*
* @param <T>
*/
protected static class OutputCollector<T> implements Collector<T> {
public SourceOutput<T> output;
public Long currentMessageTimestamp;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

/** MySQL Source Metrics Tests */
/** MySQL Source Metrics Tests. */
public class MySqlSourceMetricsTest {

private static final Logger LOG = LoggerFactory.getLogger(MySqlSourceMetricsTest.class);
Expand Down

0 comments on commit 6c00324

Please sign in to comment.