From 7fb093fb982782d081d75b8c883061aecc601595 Mon Sep 17 00:00:00 2001 From: Elliotte Rusty Harold Date: Tue, 12 Jan 2021 13:56:23 -0500 Subject: [PATCH 1/2] update Javadoc --- oauth2_http/java/com/google/auth/oauth2/JwtProvider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauth2_http/java/com/google/auth/oauth2/JwtProvider.java b/oauth2_http/java/com/google/auth/oauth2/JwtProvider.java index eadee9600..d89fe07d7 100644 --- a/oauth2_http/java/com/google/auth/oauth2/JwtProvider.java +++ b/oauth2_http/java/com/google/auth/oauth2/JwtProvider.java @@ -40,7 +40,7 @@ public interface JwtProvider { /** * Returns a new JwtCredentials instance with modified claims. * - * @param newClaims new claims. Any unspecified claim fields will default to the the current + * @param newClaims new claims. Any unspecified claim fields default to the current * values. * @return new credentials */ From 8f4d7af2660dabb55330dddea6f3932bc15dafb7 Mon Sep 17 00:00:00 2001 From: Elliotte Rusty Harold Date: Tue, 12 Jan 2021 14:19:41 -0500 Subject: [PATCH 2/2] format --- oauth2_http/java/com/google/auth/oauth2/JwtProvider.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/oauth2_http/java/com/google/auth/oauth2/JwtProvider.java b/oauth2_http/java/com/google/auth/oauth2/JwtProvider.java index d89fe07d7..7a2352ac5 100644 --- a/oauth2_http/java/com/google/auth/oauth2/JwtProvider.java +++ b/oauth2_http/java/com/google/auth/oauth2/JwtProvider.java @@ -40,8 +40,7 @@ public interface JwtProvider { /** * Returns a new JwtCredentials instance with modified claims. * - * @param newClaims new claims. Any unspecified claim fields default to the current - * values. + * @param newClaims new claims. Any unspecified claim fields default to the current values. * @return new credentials */ JwtCredentials jwtWithClaims(JwtClaims newClaims);