Skip to content

Commit

Permalink
Merge pull request #67 from zeenea/NO-JIRA/fix_builder_visibility
Browse files Browse the repository at this point in the history
[NO-JIRA] Fix builders visibility
  • Loading branch information
martin-guerre authored Nov 26, 2024
2 parents 991e8f2 + 10b1f22 commit cfeabf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/zeenea/connector/dataset/ForeignKey.java
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public Builder name(@NotNull String name) {
*
* @return the created ForeignKey instance
*/
protected ForeignKey build() {
public ForeignKey build() {
return new ForeignKey(this);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/zeenea/connector/dataset/Partitioning.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public Builder partitionType(@NotNull String partitionType) {
*
* @return the created Partitioning instance
*/
protected Partitioning build() {
public Partitioning build() {
return new Partitioning(this);
}
}
Expand Down

0 comments on commit cfeabf0

Please sign in to comment.