Skip to content
Snippets Groups Projects
Commit 18ebaa97 authored by Manpreet's avatar Manpreet Committed by android-build-merger
Browse files

Merge "Null locale causing the VTS fail." am: 179f30a4 am: 95681916

am: e9fe9372

Change-Id: I715e3b8126e1506c9d02f0be278fb8baad396018
parents 3f215a1d e9fe9372
No related merge requests found
......@@ -147,6 +147,9 @@ public final class AccessibilityIterators {
@Override
public void onConfigurationChanged(Configuration globalConfig) {
final Locale locale = globalConfig.getLocales().get(0);
if (locale == null) {
return;
}
if (!mLocale.equals(locale)) {
mLocale = locale;
onLocaleChanged(locale);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment