Skip to content

Commit 0b2cc80

Browse files
authored
Remove unnecessary String.join() call; no joining is performed since the 2nd parameter is a String (not an Iterable).
1 parent 98864cd commit 0b2cc80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codegen/src/main/resources/software/amazon/awssdk/codegen/rules/GetAttr.java.resource

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public class GetAttr extends Fn {
122122
.argv(
123123
Arrays.asList(
124124
builder.target,
125-
Literal.fromStr(String.join(".", builder.path))))
125+
Literal.fromStr(builder.path)))
126126
.build());
127127
}
128128

0 commit comments

Comments
 (0)