Merge "Fix incorrect cache checking of string config values" am: ad55c3468b am: 473917aa5b
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1516042 Change-Id: I18930572871e1bb372c6f601b691d80420f96b46
This commit is contained in:
@@ -126,7 +126,7 @@ public class ImsConfigImplBase {
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public synchronized String getConfigString(int item) throws RemoteException {
|
public synchronized String getConfigString(int item) throws RemoteException {
|
||||||
if (mProvisionedIntValue.containsKey(item)) {
|
if (mProvisionedStringValue.containsKey(item)) {
|
||||||
return mProvisionedStringValue.get(item);
|
return mProvisionedStringValue.get(item);
|
||||||
} else {
|
} else {
|
||||||
String retVal = getImsConfigImpl().getConfigString(item);
|
String retVal = getImsConfigImpl().getConfigString(item);
|
||||||
|
|||||||
Reference in New Issue
Block a user