Skip to content

Commit

Permalink
fix(codegen): checkstyle errors in AddBuiltinPlugins.java (#1731)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Dec 1, 2020
1 parent e6b2ae1 commit 48c02f4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ public List<RuntimeClientPlugin> getClientPlugins() {
.withConventions(AwsDependency.MIDDLEWARE_SIGNING.dependency, "AwsAuth", HAS_MIDDLEWARE)
// See operationUsesAwsAuth() below for AwsAuth Middleware customizations.
.servicePredicate(
(m, s) ->
!testServiceId(s, "Cognito Identity") &&
!testServiceId(s, "STS") &&
!hasOptionalAuthOperation(m, s)
(m, s) ->
!testServiceId(s, "Cognito Identity")
&& !testServiceId(s, "STS")
&& !hasOptionalAuthOperation(m, s)
).build(),
RuntimeClientPlugin.builder()
.withConventions(TypeScriptDependency.MIDDLEWARE_RETRY.dependency, "Retry")
Expand Down

0 comments on commit 48c02f4

Please sign in to comment.