commit | b30c9a2c6e2f52d79de8de334d6c05a2b564f567 | [log] [tgz] |
---|---|---|
author | Wink Saville <wink@google.com> | Thu Sep 04 22:42:02 2014 -0700 |
committer | Wink Saville <wink@google.com> | Thu Sep 04 22:42:02 2014 -0700 |
tree | 78f1bf7af3b4f3d5998a6be5c9836ea950b1f5a4 | |
parent | 69dcb409fb747de95420c5a92e5c8c7889a8baf4 [diff] [blame] |
fix build. PhoneInterfaceManager was referencing the old .mSubId in SubInfoRecord, changed to use new name .subId. Change-Id: I5d58eb575921713dd64cec2978fafac654cf5277
diff --git a/src/com/android/phone/PhoneInterfaceManager.java b/src/com/android/phone/PhoneInterfaceManager.java index 3183ff5..8e487e1 100644 --- a/src/com/android/phone/PhoneInterfaceManager.java +++ b/src/com/android/phone/PhoneInterfaceManager.java
@@ -788,7 +788,7 @@ boolean isValid = false; List<SubInfoRecord> slist = SubscriptionManager.getActiveSubInfoList(); for (SubInfoRecord subInfoRecord : slist) { - if (subInfoRecord.mSubId == subId) { + if (subInfoRecord.subId == subId) { isValid = true; break; }