Skip to content
This repository was archived by the owner on May 12, 2026. It is now read-only.

Commit 6ab8758

Browse files
authored
fix: make JwtClaims.newBuilder() public (#350)
1 parent 68e34aa commit 6ab8758

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public abstract class JwtClaims implements Serializable {
7070
*/
7171
abstract Map<String, String> getAdditionalClaims();
7272

73-
static Builder newBuilder() {
73+
public static Builder newBuilder() {
7474
return new AutoValue_JwtClaims.Builder().setAdditionalClaims(ImmutableMap.<String, String>of());
7575
}
7676

0 commit comments

Comments
 (0)