Skip to content

Commit bde9868

Browse files
author
Chase Coalwell
committed
fix: use testInputContainsMember and formatting
1 parent 19b42c1 commit bde9868

File tree

1 file changed

+3
-3
lines changed
  • codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,16 +113,16 @@ public List<RuntimeClientPlugin> getClientPlugins() {
113113
.operationPredicate((m, s, o) -> S3_MD5_OPERATIONS.contains(o.getId().getName()))
114114
.build(),
115115
RuntimeClientPlugin.builder()
116-
.withConventions(AwsDependency.ROUTE53_MIDDLEWARE.dependency, "ChangeBatchAliasTargetIdNormalizer",
117-
HAS_MIDDLEWARE)
116+
.withConventions(AwsDependency.ROUTE53_MIDDLEWARE.dependency,
117+
"ChangeBatchAliasTargetIdNormalizer", HAS_MIDDLEWARE)
118118
.servicePredicate((m, s) -> testServiceId(s, "Route 53"))
119119
.operationPredicate((m, s, o) -> o.getId().getName().equals("ChangeResourceRecordSets"))
120120
.build(),
121121
RuntimeClientPlugin.builder()
122122
.withConventions(AwsDependency.ROUTE53_MIDDLEWARE.dependency, "IdNormalizer",
123123
HAS_MIDDLEWARE)
124124
.servicePredicate((m, s) -> testServiceId(s, "Route 53"))
125-
.operationPredicate((m, s, o) -> testContainsMember(m, o, ROUTE_53_ID_MEMBERS))
125+
.operationPredicate((m, s, o) -> testInputContainsMember(m, o, ROUTE_53_ID_MEMBERS))
126126
.build()
127127
);
128128
}

0 commit comments

Comments
 (0)