Skip to content

Commit 58753d0

Browse files
authored
Update builder methods visibility to public (#2506)
1 parent 42c61b7 commit 58753d0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

smithy-aws-traits/src/main/java/software/amazon/smithy/aws/traits/tagging/TaggableApiConfig.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,22 +117,22 @@ public static final class Builder implements SmithyBuilder<TaggableApiConfig> {
117117
private ShapeId listTagsApi;
118118
private SourceLocation sourceLocation = SourceLocation.none();
119119

120-
Builder tagApi(ShapeId tagApi) {
120+
public Builder tagApi(ShapeId tagApi) {
121121
this.tagApi = tagApi;
122122
return this;
123123
}
124124

125-
Builder untagApi(ShapeId untagApi) {
125+
public Builder untagApi(ShapeId untagApi) {
126126
this.untagApi = untagApi;
127127
return this;
128128
}
129129

130-
Builder listTagsApi(ShapeId listTagsApi) {
130+
public Builder listTagsApi(ShapeId listTagsApi) {
131131
this.listTagsApi = listTagsApi;
132132
return this;
133133
}
134134

135-
Builder sourceLocation(SourceLocation sourceLocation) {
135+
public Builder sourceLocation(SourceLocation sourceLocation) {
136136
this.sourceLocation = sourceLocation;
137137
return this;
138138
}

0 commit comments

Comments
 (0)