Skip to content

Commit 5d6eeb0

Browse files
committed
lint
1 parent 314123c commit 5d6eeb0

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

oauth2_http/java/com/google/auth/oauth2/ComputeEngineCredentials.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,8 @@ public AccessToken refreshAccessToken() throws IOException {
373373
throw new IOException(METADATA_RESPONSE_EMPTY_CONTENT_ERROR_MESSAGE);
374374
}
375375
GenericData responseData = response.parseAs(GenericData.class);
376-
LoggingUtils.logResponsePayload(responseData, LOGGER_PROVIDER, "Response payload for access token");
376+
LoggingUtils.logResponsePayload(
377+
responseData, LOGGER_PROVIDER, "Response payload for access token");
377378
String accessToken =
378379
OAuth2Utils.validateString(responseData, "access_token", PARSE_ERROR_PREFIX);
379380
int expiresInSeconds =

oauth2_http/java/com/google/auth/oauth2/IamUtils.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ private static String getSignature(
186186
}
187187

188188
GenericData responseData = response.parseAs(GenericData.class);
189-
LoggingUtils.logResponsePayload(responseData, LOGGER_PROVIDER, "Response payload for sign blob");
189+
LoggingUtils.logResponsePayload(
190+
responseData, LOGGER_PROVIDER, "Response payload for sign blob");
190191
return OAuth2Utils.validateString(responseData, "signedBlob", PARSE_ERROR_SIGNATURE);
191192
}
192193

oauth2_http/java/com/google/auth/oauth2/ImpersonatedCredentials.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,8 @@ public AccessToken refreshAccessToken() throws IOException {
564564
}
565565

566566
GenericData responseData = response.parseAs(GenericData.class);
567-
LoggingUtils.logResponsePayload(responseData, LOGGER_PROVIDER, "Response payload for access token");
567+
LoggingUtils.logResponsePayload(
568+
responseData, LOGGER_PROVIDER, "Response payload for access token");
568569
response.disconnect();
569570

570571
String accessToken =

oauth2_http/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@
133133
<id>slf4j2x-test</id>
134134
<!-- This profile is for logging test only,
135135
use instead of the default slf4j2x.
136-
This should merge with parent modules same name profile-->
136+
This should merge with the profile with the same name
137+
in the parent module -->
137138
<build>
138139
<plugins>
139140
<plugin>

0 commit comments

Comments
 (0)