summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrogersb11 <brettrogers11@gmail.com>2015-12-12 16:28:52 -0500
committerrogersb11 <brettrogers11@gmail.com>2015-12-12 16:52:52 -0500
commit7a50edd1da0608aea52caedf238965758423e689 (patch)
tree5267a8c72d2a402d2867d6df084cc38b37e7f8e5
parentf3881378b06859267e50da033f01e6007dc6bd33 (diff)
downloadandroid_device_samsung_smdk4412-qcom-common-7a50edd1da0608aea52caedf238965758423e689.tar.gz
android_device_samsung_smdk4412-qcom-common-7a50edd1da0608aea52caedf238965758423e689.tar.bz2
android_device_samsung_smdk4412-qcom-common-7a50edd1da0608aea52caedf238965758423e689.zip
smdk4x12QComRIL: Remove setting mQANElements here, this is handled through super class now
Property is set to correct value in device system.prop now Change-Id: I3f5a71f56be3ef64deda8c45c550db86ca5fab98
-rw-r--r--ril/telephony/java/com/android/internal/telephony/smdk4x12QComRIL.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/ril/telephony/java/com/android/internal/telephony/smdk4x12QComRIL.java b/ril/telephony/java/com/android/internal/telephony/smdk4x12QComRIL.java
index 48fb0d3..7141e98 100644
--- a/ril/telephony/java/com/android/internal/telephony/smdk4x12QComRIL.java
+++ b/ril/telephony/java/com/android/internal/telephony/smdk4x12QComRIL.java
@@ -70,14 +70,12 @@ public class smdk4x12QComRIL extends RIL implements CommandsInterface {
public smdk4x12QComRIL(Context context, int networkModes, int cdmaSubscription) {
this(context, networkModes, cdmaSubscription, null);
mAudioManager = (AudioManager)mContext.getSystemService(Context.AUDIO_SERVICE);
- mQANElements = SystemProperties.getInt("ro.ril.telephony.mqanelements", 6);
}
public smdk4x12QComRIL(Context context, int preferredNetworkType,
int cdmaSubscription, Integer instanceId) {
super(context, preferredNetworkType, cdmaSubscription, instanceId);
mAudioManager = (AudioManager)mContext.getSystemService(Context.AUDIO_SERVICE);
- mQANElements = SystemProperties.getInt("ro.ril.telephony.mqanelements", 6);
}
@Override