Skip to content

Commit

Permalink
Refactor DumperConfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Nov 2, 2023
1 parent b5fecd5 commit 79ebdaf
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;

/**
Expand All @@ -59,7 +58,7 @@ public class DumperConfiguration {

// LinkedHashSet is required
@Getter(AccessLevel.PROTECTED)
private Map<LogicTableName, Set<ColumnName>> targetTableColumnsMap = new HashMap<>();
private Map<LogicTableName, Collection<ColumnName>> targetTableColumnsMap = new HashMap<>();

private boolean decodeWithTX;

Expand Down

0 comments on commit 79ebdaf

Please sign in to comment.