Skip to content

Commit

Permalink
Core: Make new TableMetadata.Builder constructor private (#10714)
Browse files Browse the repository at this point in the history
  • Loading branch information
amogh-jahagirdar committed Jul 17, 2024
1 parent 319f29e commit 3c46178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/apache/iceberg/TableMetadata.java
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,7 @@ private Builder() {
this(DEFAULT_TABLE_FORMAT_VERSION);
}

public Builder(int formatVersion) {
private Builder(int formatVersion) {
this.base = null;
this.formatVersion = formatVersion;
this.lastSequenceNumber = INITIAL_SEQUENCE_NUMBER;
Expand Down

0 comments on commit 3c46178

Please sign in to comment.