Remove useless method call

This commit is contained in:
Erwan Croze 2019-01-18 13:59:41 +01:00
parent 89a1a9b336
commit ddee0cfcd6

View file

@ -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