Skip to content

Commit 48c02f4

Browse files
authored
fix(codegen): checkstyle errors in AddBuiltinPlugins.java (#1731)
1 parent e6b2ae1 commit 48c02f4

File tree

1 file changed

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

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ public List<RuntimeClientPlugin> getClientPlugins() {
6767
.withConventions(AwsDependency.MIDDLEWARE_SIGNING.dependency, "AwsAuth", HAS_MIDDLEWARE)
6868
// See operationUsesAwsAuth() below for AwsAuth Middleware customizations.
6969
.servicePredicate(
70-
(m, s) ->
71-
!testServiceId(s, "Cognito Identity") &&
72-
!testServiceId(s, "STS") &&
73-
!hasOptionalAuthOperation(m, s)
70+
(m, s) ->
71+
!testServiceId(s, "Cognito Identity")
72+
&& !testServiceId(s, "STS")
73+
&& !hasOptionalAuthOperation(m, s)
7474
).build(),
7575
RuntimeClientPlugin.builder()
7676
.withConventions(TypeScriptDependency.MIDDLEWARE_RETRY.dependency, "Retry")

0 commit comments

Comments
 (0)