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

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

am: 95681916

Change-Id: Iab284dfc831a9079e339c8c23fba8f3e7e4ec04d
parents 36f0d9b9 95681916
No related branches found
No related tags found
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