Skip to content

Commit

Permalink
Update builder methods visibility to public (#2506)
Browse files Browse the repository at this point in the history
  • Loading branch information
yefrig authored Feb 5, 2025
1 parent 42c61b7 commit 58753d0
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,22 +117,22 @@ public static final class Builder implements SmithyBuilder<TaggableApiConfig> {
private ShapeId listTagsApi;
private SourceLocation sourceLocation = SourceLocation.none();

Builder tagApi(ShapeId tagApi) {
public Builder tagApi(ShapeId tagApi) {
this.tagApi = tagApi;
return this;
}

Builder untagApi(ShapeId untagApi) {
public Builder untagApi(ShapeId untagApi) {
this.untagApi = untagApi;
return this;
}

Builder listTagsApi(ShapeId listTagsApi) {
public Builder listTagsApi(ShapeId listTagsApi) {
this.listTagsApi = listTagsApi;
return this;
}

Builder sourceLocation(SourceLocation sourceLocation) {
public Builder sourceLocation(SourceLocation sourceLocation) {
this.sourceLocation = sourceLocation;
return this;
}
Expand Down

0 comments on commit 58753d0

Please sign in to comment.