Skip to content

Commit

Permalink
Refactor DumperCommonContext
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Nov 5, 2023
1 parent 3ba67fb commit 1d64586
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ public final class InventoryDumperContext {

public InventoryDumperContext(final DumperCommonContext commonContext) {
this.commonContext = new DumperCommonContext();
commonContext.setDataSourceName(commonContext.getDataSourceName());
commonContext.setDataSourceConfig(commonContext.getDataSourceConfig());
commonContext.setTableNameMapper(commonContext.getTableNameMapper());
commonContext.setTableAndSchemaNameMapper(commonContext.getTableAndSchemaNameMapper());
this.commonContext.setDataSourceName(commonContext.getDataSourceName());
this.commonContext.setDataSourceConfig(commonContext.getDataSourceConfig());
this.commonContext.setTableNameMapper(commonContext.getTableNameMapper());
this.commonContext.setTableAndSchemaNameMapper(commonContext.getTableAndSchemaNameMapper());
}

/**
Expand Down

0 comments on commit 1d64586

Please sign in to comment.