Fix the build
setCompatibleWith was renamed to setIsCompatibleWith, and an in-
flight CL was not rebased.
Change-Id: I2c831df5f054e0c6f95eaf570318c9e358e0f4cb
diff --git a/src/com/android/telecomm/OutgoingCallsManager.java b/src/com/android/telecomm/OutgoingCallsManager.java
index c37665f..7c2a501 100644
--- a/src/com/android/telecomm/OutgoingCallsManager.java
+++ b/src/com/android/telecomm/OutgoingCallsManager.java
@@ -76,13 +76,13 @@
* @param isCompatible True if the call-service is compatible with the corresponding call and
* false otherwise.
*/
- void setCompatibleWith(String callId, boolean isCompatible) {
+ void setIsCompatibleWith(String callId, boolean isCompatible) {
OutgoingCallProcessor processor = mOutgoingCallProcessors.get(callId);
if (processor == null) {
// Shouldn't happen, so log a wtf if it does.
Log.wtf(this, "Received unexpected setCompatibleWith notification.");
} else {
- processor.setCompatibleWith(callId, isCompatible);
+ processor.setIsCompatibleWith(callId, isCompatible);
}
}