aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkoxxx <stefan.panko@gmail.com>2015-07-09 22:27:13 +0200
committerGerrit Code Review <gerrit@cyanogenmod.org>2015-11-21 12:16:28 -0800
commit8480c33bf07ce7e48bc32f22ceb43af56187bf76 (patch)
tree757dd85cdf316d75d0c910666157fc0674eda189
parent5906738dd068fcdc84787853528d6e7044bde3f4 (diff)
downloadandroid_frameworks_opt_telephony-8480c33bf07ce7e48bc32f22ceb43af56187bf76.tar.gz
android_frameworks_opt_telephony-8480c33bf07ce7e48bc32f22ceb43af56187bf76.tar.bz2
android_frameworks_opt_telephony-8480c33bf07ce7e48bc32f22ceb43af56187bf76.zip
RIL: Make mQANElements configurable by property
Change-Id: I21a3641d54ffd9e1b7d9f291c16bb9c6ca5f4542
-rw-r--r--src/java/com/android/internal/telephony/RIL.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/android/internal/telephony/RIL.java b/src/java/com/android/internal/telephony/RIL.java
index 4709fc8c8..9bd46a92a 100644
--- a/src/java/com/android/internal/telephony/RIL.java
+++ b/src/java/com/android/internal/telephony/RIL.java
@@ -289,7 +289,7 @@ public class RIL extends BaseCommands implements CommandsInterface {
// Number of per-network elements expected in QUERY_AVAILABLE_NETWORKS's response.
// 4 elements is default, but many RILs actually return 5, making it impossible to
// divide the response array without prior knowledge of the number of elements.
- protected int mQANElements = 4;
+ protected int mQANElements = SystemProperties.getInt("ro.ril.telephony.mqanelements", 4);
//***** Events