Skip to content

Commit

Permalink
make IcebergFieldNode constructor package private
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-bzabek committed Nov 14, 2024
1 parent 374c466 commit 03f3274
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class IcebergFieldNode {

public final LinkedHashMap<String, IcebergFieldNode> children;

public IcebergFieldNode(String name, Type apacheIcebergSchema) {
IcebergFieldNode(String name, Type apacheIcebergSchema) {
this.name = name;
this.snowflakeIcebergType = IcebergColumnTypeMapper.mapToSnowflakeDataType(apacheIcebergSchema);
this.children = produceChildren(apacheIcebergSchema);
Expand Down

0 comments on commit 03f3274

Please sign in to comment.