Skip to content

Commit

Permalink
[fix] removed log
Browse files Browse the repository at this point in the history
  • Loading branch information
revant committed Jul 27, 2017
1 parent 76bda76 commit 129df3d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,19 +79,18 @@ class AuthenticatorActivity : AccountAuthenticatorActivity() {
//smsVerifyCatcher.setFilter("regexp");

mAccountManager = AccountManager.get(baseContext)
Log.d("IntentExtras", intent.extras.toString())

mAuthTokenType = intent.getStringExtra(ARG_AUTH_TYPE)

if (mAuthTokenType == null) {
mAuthTokenType = AccountGeneral.AUTHTOKEN_TYPE_FULL_ACCESS
}

Log.d("Intent:ACCOUNT_NAME", intent.extras.toString())
val accounts = mAccountManager.getAccountsByType(intent.getStringExtra(ARG_ACCOUNT_TYPE))
allowMultipleAccounts = Integer.parseInt(resources.getString(R.string.allowMultipleAccounts))
var signInAgain: Boolean? = true
if (intent.hasExtra(ARG_ACCOUNT_NAME)) {
Log.d("IntentExtras", intent.extras.toString())
for (account in accounts) {
if (account.name == intent.getStringExtra(ARG_ACCOUNT_NAME)) {
wireUpUI()
Expand Down

0 comments on commit 129df3d

Please sign in to comment.