Skip to content

Commit 6ab8758

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)