Skip to content

Commit f68065c

Browse files
committed
chore: line lengths
1 parent 5954b17 commit f68065c

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AwsProtocolUtils.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,8 @@ static void generateProtocolTests(ProtocolGenerator generator, GenerationContext
309309
/**
310310
* @return map of error full shape id to alias strings having AwsQueryCompat error code.
311311
*/
312-
static Map<String, TreeSet<String>> getErrorAliases(GenerationContext context, Collection<OperationShape> operations) {
312+
static Map<String, TreeSet<String>> getErrorAliases(GenerationContext context,
313+
Collection<OperationShape> operations) {
313314
Map<String, TreeSet<String>> aliases = new HashMap<>();
314315
ServiceShape service = context.getService();
315316
boolean awsQueryCompatible = service.hasTrait(AwsQueryCompatibleTrait.class);

codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/AwsSmithyRpcV2Cbor.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ public void generateSharedComponents(GenerationContext context) {
3434
}
3535

3636
@Override
37-
public Map<String, TreeSet<String>> getErrorAliases(GenerationContext context, Collection<OperationShape> operations) {
37+
public Map<String, TreeSet<String>> getErrorAliases(GenerationContext context,
38+
Collection<OperationShape> operations) {
3839
return AwsProtocolUtils.getErrorAliases(context, operations);
3940
}
4041

codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/JsonRpcProtocolGenerator.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ public void generateProtocolTests(GenerationContext context) {
8585
}
8686

8787
@Override
88-
public Map<String, TreeSet<String>> getErrorAliases(GenerationContext context, Collection<OperationShape> operations) {
88+
public Map<String, TreeSet<String>> getErrorAliases(GenerationContext context,
89+
Collection<OperationShape> operations) {
8990
return AwsProtocolUtils.getErrorAliases(context, operations);
9091
}
9192

codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/RestJsonProtocolGenerator.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ abstract class RestJsonProtocolGenerator extends HttpBindingProtocolGenerator {
6868
}
6969

7070
@Override
71-
public Map<String, TreeSet<String>> getErrorAliases(GenerationContext context, Collection<OperationShape> operations) {
71+
public Map<String, TreeSet<String>> getErrorAliases(GenerationContext context,
72+
Collection<OperationShape> operations) {
7273
return AwsProtocolUtils.getErrorAliases(context, operations);
7374
}
7475

0 commit comments

Comments
 (0)