Fix merge error in BluetoothPhoneServiceImpl

Change-Id: I0a7a721eb510642858b3037af63c3bf271d9c7c0
diff --git a/src/com/android/server/telecom/BluetoothPhoneServiceImpl.java b/src/com/android/server/telecom/BluetoothPhoneServiceImpl.java
index 9f074a2..24fb067 100644
--- a/src/com/android/server/telecom/BluetoothPhoneServiceImpl.java
+++ b/src/com/android/server/telecom/BluetoothPhoneServiceImpl.java
@@ -184,18 +184,12 @@
                     }
                     if (TextUtils.isEmpty(address)) {
                         address = TelephonyManager.from(mContext).getLine1Number();
+                        if (address == null) address = "";
                     }
                     return address;
                 } finally {
                     Binder.restoreCallingIdentity(token);
                 }
-
-                if (TextUtils.isEmpty(address)) {
-                    address = TelephonyManager.from(mContext).getLine1Number();
-                    if (address == null) address = "";
-                }
-
-                return address;
             }
         }