Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Optimize] common change hutool #3074

Merged
merged 1 commit into from
Jan 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
optimize_hutoolp
  • Loading branch information
zackyoungh committed Jan 26, 2024
commit 5463bb953bf1f83768aba92f467c9d22159fccc5
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
import java.util.Map;
import java.util.Optional;

import com.google.common.collect.Lists;
import cn.hutool.core.collection.CollUtil;

public class SQLSinkBuilder extends AbstractSqlSinkBuilder implements Serializable {

Expand All @@ -58,7 +58,7 @@ private SQLSinkBuilder(FlinkCDCConfig config) {

@Override
protected void initTypeConverterList() {
typeConverterList = Lists.newArrayList(
typeConverterList = CollUtil.newArrayList(
this::convertDateType,
this::convertTimestampType,
this::convertFloatType,
Expand Down
Loading