Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update AuthState.java #624

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions library/java/net/openid/appauth/AuthState.java
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ public AuthState(
/**
* The most recent refresh token received from the server, if available. Rather than using
* this property directly as part of any request depending on authorization state, it is
* recommended to call {@link #performActionWithFreshTokens(AuthorizationService,
* recommended to
{@link #performActionWithFreshTokens(AuthorizationService,
* AuthStateAction) performActionWithFreshTokens} to ensure that fresh tokens are available.
*/
@Nullable
Expand Down Expand Up @@ -430,7 +431,7 @@ public void update(
// developer that this is unexpected.
Logger.warn(
"AuthState.update should not be called in an error state (%s), call update"
+ "with the result of the fresh authorization response first",
+ " with the result of the fresh authorization response first",
mAuthorizationException);
mAuthorizationException = null;
}
Expand Down