summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEthan Chen <intervigil@gmail.com>2016-02-07 17:09:46 -0500
committerdoc HD <doc.divxm@gmail.com>2016-02-08 00:24:26 +0200
commit23f8ca2fdcf526c55851924bd9ae4e5f943f79a5 (patch)
tree4cd865e8cf0c75c88c2ddd5ce565b68cb5af5e2e
parent7e77fa46b2b4d64a5424d802aa7869c5f9cf97a5 (diff)
ril: Add instanceId to constructormm6.0
CYAN-7390 Change-Id: I4dec84538153523cf1c5fa6f97e3bafd65a706dd
-rw-r--r--ril/telephony/java/com/android/internal/telephony/LS980RIL.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/ril/telephony/java/com/android/internal/telephony/LS980RIL.java b/ril/telephony/java/com/android/internal/telephony/LS980RIL.java
index 4c19296..4c50534 100644
--- a/ril/telephony/java/com/android/internal/telephony/LS980RIL.java
+++ b/ril/telephony/java/com/android/internal/telephony/LS980RIL.java
@@ -32,11 +32,11 @@ public class LS980RIL extends LgeLteRIL implements CommandsInterface {
public LS980RIL(Context context, int preferredNetworkType,
int cdmaSubscription, Integer instanceId) {
- this(context, preferredNetworkType, cdmaSubscription);
+ super(context, preferredNetworkType, cdmaSubscription, instanceId);
}
public LS980RIL(Context context, int networkMode, int cdmaSubscription) {
- super(context, networkMode, cdmaSubscription);
+ this(context, networkMode, cdmaSubscription, null);
}
@Override