diff options
| author | Ethan Chen <intervigil@gmail.com> | 2016-02-07 17:15:53 -0500 |
|---|---|---|
| committer | Dan Pasanen <invisiblek@cyanogenmod.org> | 2016-02-08 12:43:09 -0800 |
| commit | c43d0aa61459d488c6075031bd12d18a86b2a6c8 (patch) | |
| tree | 3548be00416fa37410f6ad255ae84fb1432cfe02 | |
| parent | f5a0a5c990b5786d7b56df4206f6b3a396352407 (diff) | |
ril: Add instanceId to constructor
NIGHTLIES-2473
Change-Id: I32686d4ac25c7f84143314c22c4aa1e72120d9f3
| -rw-r--r-- | ril/telephony/java/com/android/internal/telephony/VS985RIL.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ril/telephony/java/com/android/internal/telephony/VS985RIL.java b/ril/telephony/java/com/android/internal/telephony/VS985RIL.java index 6126247..41b3fe8 100644 --- a/ril/telephony/java/com/android/internal/telephony/VS985RIL.java +++ b/ril/telephony/java/com/android/internal/telephony/VS985RIL.java @@ -32,11 +32,11 @@ public class VS985RIL extends LgeLteRIL implements CommandsInterface { public VS985RIL(Context context, int preferredNetworkType, int cdmaSubscription, Integer instanceId) { - this(context, preferredNetworkType, cdmaSubscription); + super(context, preferredNetworkType, cdmaSubscription, instanceId); } public VS985RIL(Context context, int networkMode, int cdmaSubscription) { - super(context, networkMode, cdmaSubscription); + this(context, networkMode, cdmaSubscription, null); } @Override |
