We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c11cef commit 9230b6bCopy full SHA for 9230b6b
1 file changed
release-scripts/src/main/java/software/amazon/awssdk/release/CreateNewServiceModuleMain.java
@@ -137,13 +137,13 @@ private NewServiceCreator(CommandLine commandLine) {
137
}
138
139
private String transformSpecialProtocols(String protocol) {
140
- switch (protocol) {
141
- case "ec2": return "aws-query";
142
- case "rest-xml": return "aws-xml";
143
- case "rest-json": return "aws-json";
144
- case "smithy-rpc-v2-cbor": return "smithy-rpcv2";
145
- default: return "aws-" + protocol;
146
- }
+ switch (protocol) {
+ case "ec2": return "aws-query";
+ case "rest-xml": return "aws-xml";
+ case "rest-json": return "aws-json";
+ case "smithy-rpc-v2-cbor": return "smithy-rpcv2";
+ default: return "aws-" + protocol;
+ }
147
148
149
public void run() throws Exception {
0 commit comments