File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
smithy-aws-traits/src/main/java/software/amazon/smithy/aws/traits/tagging Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments