Merge "Revert "Fix bug which displays "conf-factory.." string in dialer app."" into nyc-mr1-dev
diff --git a/src/com/android/services/telephony/TelephonyConnection.java b/src/com/android/services/telephony/TelephonyConnection.java
index 6cb6488..b6bbcac 100644
--- a/src/com/android/services/telephony/TelephonyConnection.java
+++ b/src/com/android/services/telephony/TelephonyConnection.java
@@ -92,8 +92,6 @@
private static final int MSG_CDMA_VOICE_PRIVACY_ON = 15;
private static final int MSG_CDMA_VOICE_PRIVACY_OFF = 16;
- private static final String CONF_CALL_SUBSTRING = "conf-factory";
-
private final Handler mHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
@@ -750,9 +748,6 @@
if (!Objects.equals(address, getAddress()) ||
presentation != getAddressPresentation()) {
Log.v(this, "updateAddress, address changed");
- if (address != null && address.toString().contains(CONF_CALL_SUBSTRING)) {
- address = null;
- }
setAddress(address, presentation);
}