Skip to content

Commit

Permalink
fix: make JwtClaims.newBuilder() public (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
chingor13 committed Sep 26, 2019
1 parent 68e34aa commit 6ab8758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oauth2_http/java/com/google/auth/oauth2/JwtClaims.java
Expand Up @@ -70,7 +70,7 @@ public abstract class JwtClaims implements Serializable {
*/
abstract Map<String, String> getAdditionalClaims();

static Builder newBuilder() {
public static Builder newBuilder() {
return new AutoValue_JwtClaims.Builder().setAdditionalClaims(ImmutableMap.<String, String>of());
}

Expand Down

0 comments on commit 6ab8758

Please sign in to comment.