mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 11:58:09 +00:00
Remove useless method call
This commit is contained in:
parent
89a1a9b336
commit
ddee0cfcd6
1 changed files with 9 additions and 9 deletions
|
|
@ -1795,9 +1795,9 @@ public class LinphoneManager implements CoreListener, SensorEventListener, Accou
|
|||
|
||||
@Override
|
||||
public void onIsAccountExist(AccountCreator accountCreator, AccountCreator.Status status, String resp) {
|
||||
if (status.equals(AccountCreator.Status.AccountExist)) {
|
||||
accountCreator.isAccountLinked();
|
||||
}
|
||||
//if (status.equals(AccountCreator.Status.AccountExist)) {
|
||||
// accountCreator.isAccountLinked();
|
||||
//}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -1808,9 +1808,9 @@ public class LinphoneManager implements CoreListener, SensorEventListener, Accou
|
|||
|
||||
@Override
|
||||
public void onLinkAccount(AccountCreator accountCreator, AccountCreator.Status status, String resp) {
|
||||
if (status.equals(AccountCreator.Status.AccountNotLinked)) {
|
||||
askLinkWithPhoneNumber();
|
||||
}
|
||||
//if (status.equals(AccountCreator.Status.AccountNotLinked)) {
|
||||
// askLinkWithPhoneNumber();
|
||||
//}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -1824,9 +1824,9 @@ public class LinphoneManager implements CoreListener, SensorEventListener, Accou
|
|||
|
||||
@Override
|
||||
public void onIsAccountLinked(AccountCreator accountCreator, AccountCreator.Status status, String resp) {
|
||||
if (status.equals(AccountCreator.Status.AccountNotLinked)) {
|
||||
askLinkWithPhoneNumber();
|
||||
}
|
||||
//if (status.equals(AccountCreator.Status.AccountNotLinked)) {
|
||||
// askLinkWithPhoneNumber();
|
||||
//}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue