summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEthan Chen <intervigil@gmail.com>2016-02-07 17:12:54 -0500
committerdoc HD <doc.divxm@gmail.com>2016-02-08 00:23:46 +0200
commite32a6587c61075277bef70e0b9d9a8a94ab3744e (patch)
treed889986c674c4b300eacc49210f2856070bca660
parent096d4d2a45a7423d99a70d51d6068fc6544b0504 (diff)
ril: Add instanceId to constructor
CYAN-7390 Change-Id: I25a45b964a7bf73b1e792fa307beae2b58e4e9dc
-rw-r--r--ril/telephony/java/com/android/internal/telephony/VS980RIL.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/ril/telephony/java/com/android/internal/telephony/VS980RIL.java b/ril/telephony/java/com/android/internal/telephony/VS980RIL.java
index 163201d..ca04823 100644
--- a/ril/telephony/java/com/android/internal/telephony/VS980RIL.java
+++ b/ril/telephony/java/com/android/internal/telephony/VS980RIL.java
@@ -32,11 +32,11 @@ public class VS980RIL extends LgeLteRIL implements CommandsInterface {
public VS980RIL(Context context, int preferredNetworkType,
int cdmaSubscription, Integer instanceId) {
- this(context, preferredNetworkType, cdmaSubscription);
+ super(context, preferredNetworkType, cdmaSubscription, instanceId);
}
public VS980RIL(Context context, int networkMode, int cdmaSubscription) {
- super(context, networkMode, cdmaSubscription);
+ this(context, networkMode, cdmaSubscription, null);
}
@Override