Skip to content

Commit 3f9617c

Browse files
Fix duplicate "the" in Javadoc comments
Removes occurrences of "the the" in Javadoc comments in the following files: - oauth2_http/java/com/google/auth/oauth2/OAuth2Credentials.java - oauth2_http/java/com/google/auth/oauth2/ServiceAccountJwtAccessCredentials.java - oauth2_http/java/com/google/auth/oauth2/JwtCredentials.java
1 parent c9fd1b1 commit 3f9617c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ private boolean shouldRefresh() {
140140
/**
141141
* Returns a copy of these credentials with modified claims.
142142
*
143-
* @param newClaims new claims. Any unspecified claim fields default to the the current values.
143+
* @param newClaims new claims. Any unspecified claim fields default to the current values.
144144
* @return new credentials
145145
*/
146146
@Override

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ public void onFailure(Throwable throwable) {
574574
/**
575575
* Result from {@link com.google.auth.oauth2.OAuth2Credentials#getOrCreateRefreshTask()}.
576576
*
577-
* <p>Contains the the refresh task and a flag indicating if the task is newly created. If the
577+
* <p>Contains the refresh task and a flag indicating if the task is newly created. If the
578578
* task is newly created, it is the caller's responsibility to execute it.
579579
*/
580580
static class AsyncRefreshResult {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ public JwtCredentials load(JwtClaims claims) throws Exception {
336336
/**
337337
* Returns a new JwtCredentials instance with modified claims.
338338
*
339-
* @param newClaims new claims. Any unspecified claim fields will default to the the current
339+
* @param newClaims new claims. Any unspecified claim fields will default to the current
340340
* values.
341341
* @return new credentials
342342
*/

0 commit comments

Comments
 (0)