Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hailin0 committed Jul 11, 2024
1 parent 518ed1d commit 1556bd6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,6 @@ private Object getValue(String key) {
}
}

public Map<String, Object> copyData() {
return new LinkedHashMap<>(this.confData);
}

@Override
public int hashCode() {
int hash = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public static ReadonlyConfig replaceTablePlaceholder(

public static ReadonlyConfig replaceTablePlaceholder(
ReadonlyConfig config, CatalogTable table, Collection<String> excludeKeys) {
Map<String, Object> copyOnWriteData = config.copyData();
Map<String, Object> copyOnWriteData = config.getSourceMap();
for (String key : copyOnWriteData.keySet()) {
if (excludeKeys.contains(key)) {
continue;
Expand Down

0 comments on commit 1556bd6

Please sign in to comment.