Merge commit '83af4fbb0e5c28506a77fc508056c5022b9a71eb' * commit '83af4fbb0e5c28506a77fc508056c5022b9a71eb': Fix the build.
This commit is contained in:
@@ -355,27 +355,6 @@ public final class CallManager {
|
||||
return getFirstActiveRingingCall().getPhone();
|
||||
}
|
||||
|
||||
/**
|
||||
* unregister phone from CallManager
|
||||
* @param phone
|
||||
*/
|
||||
public void unregisterPhone(Phone phone) {
|
||||
if (phone != null && mPhones.contains(phone)) {
|
||||
mPhones.remove(phone);
|
||||
mRingingCalls.remove(phone.getRingingCall());
|
||||
mBackgroundCalls.remove(phone.getBackgroundCall());
|
||||
mForegroundCalls.remove(phone.getForegroundCall());
|
||||
unregisterForPhoneStates(phone);
|
||||
if (phone == mDefaultPhone) {
|
||||
if (mPhones.isEmpty()) {
|
||||
mDefaultPhone = null;
|
||||
} else {
|
||||
mDefaultPhone = mPhones.get(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void setAudioMode() {
|
||||
Context context = getContext();
|
||||
if (context == null) return;
|
||||
|
||||
Reference in New Issue
Block a user