Skip to content

Commit 496fbb6

Browse files
committed
Make responseJson argument nullable.
1 parent aab2c83 commit 496fbb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/java/net/openid/appauth/AuthorizationException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ public static AuthorizationException fromOAuthTemplate(
510510
@Nullable String errorOverride,
511511
@Nullable String errorDescriptionOverride,
512512
@Nullable Uri errorUriOverride,
513-
@NonNull JSONObject responseJson) {
513+
@Nullable JSONObject responseJson) {
514514
return new AuthorizationException(
515515
ex.type,
516516
ex.code,

0 commit comments

Comments
 (0)