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

Deprecate API client constructors that take Context #393

Merged
merged 1 commit into from
Dec 18, 2020
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ public AuthenticationAPIClient(@NonNull Auth0 auth0) {
* defined in the project String resources file.
*
* @param context a valid Context
* @deprecated This method will be removed in the next version. Please use {@link AuthenticationAPIClient(Auth0)}.
*/
@Deprecated
public AuthenticationAPIClient(@NonNull Context context) {
this(new Auth0(context));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ public UsersAPIClient(@NonNull Auth0 auth0, @NonNull String token) {
*
* @param context a valid Context
* @param token of the primary identity
* @deprecated This method will be removed in the next version. Please use {@link UsersAPIClient(Auth0, String)}.
*/
@Deprecated
public UsersAPIClient(@NonNull Context context, @NonNull String token) {
this(new Auth0(context), token);
}
Expand Down