am fc94d45f: Merge "Make getDeviceId return null for Non-phone device." into honeycomb-LTE

* commit 'fc94d45fc209dbcfdf7f57e0c04c581e1e51988b':
  Make getDeviceId return null for Non-phone device.
This commit is contained in:
John Wang
2011-06-07 15:56:19 -07:00
committed by Android Git Automerger

View File

@@ -191,6 +191,10 @@ public class TelephonyManager {
* {@link android.Manifest.permission#READ_PHONE_STATE READ_PHONE_STATE}
*/
public String getDeviceId() {
if (!isVoiceCapable()) {
return null;
}
try {
return getSubscriberInfo().getDeviceId();
} catch (RemoteException ex) {