diff options
| author | Kasual52e <mushroomhead52e@gmail.com> | 2016-02-13 09:22:47 -0800 |
|---|---|---|
| committer | Kasual52e <mushroomhead52e@gmail.com> | 2016-02-13 09:22:47 -0800 |
| commit | 084b07fe72e97c18db3e91923478e0730172737b (patch) | |
| tree | c5e024e6f9e5d4a8da0135832430326cf7fb942a | |
| parent | 19bb8938ea33724e71391ea5a9ca5312798be39c (diff) | |
ril: inherit LgeLteRIL and add instanceId to constructor
Change-Id: Ie8d39ef68ce63976c794d292ee068ab70e366d41
| -rw-r--r-- | ril/telephony/java/com/android/internal/telephony/LS990RIL.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ril/telephony/java/com/android/internal/telephony/LS990RIL.java b/ril/telephony/java/com/android/internal/telephony/LS990RIL.java index 12f4719..e7cb08e 100644 --- a/ril/telephony/java/com/android/internal/telephony/LS990RIL.java +++ b/ril/telephony/java/com/android/internal/telephony/LS990RIL.java @@ -35,16 +35,16 @@ import com.android.internal.telephony.uicc.IccCardStatus; * * {@hide} */ -public class LS990RIL extends RIL implements CommandsInterface { +public class LS990RIL extends LgeLteRIL implements CommandsInterface { static final String LOG_TAG = "LS990RIL"; public LS990RIL(Context context, int preferredNetworkType, int cdmaSubscription, Integer instanceId) { - this(context, preferredNetworkType, cdmaSubscription); + super(context, preferredNetworkType, cdmaSubscription, instanceId); } public LS990RIL(Context context, int networkMode, int cdmaSubscription) { - super(context, networkMode, cdmaSubscription); + this(context, networkMode, cdmaSubscription, null); } @Override |
