Skip to content

Commit

Permalink
[Optimize] common change hutool (#3074)
Browse files Browse the repository at this point in the history
  • Loading branch information
zackyoungh authored Jan 26, 2024
1 parent 348e9af commit 4358fd5
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 4358fd5

Please sign in to comment.