Remove a useless method.
Yay for cleanup Bug: 18108776 Change-Id: I13f4066cd54f294377fdcf375a69350c44d4a32amain
parent
03eb9de961
commit
b395ce4396
|
@ -16,8 +16,6 @@
|
||||||
|
|
||||||
package com.android.inputmethod.dictionarypack;
|
package com.android.inputmethod.dictionarypack;
|
||||||
|
|
||||||
import android.content.res.Configuration;
|
|
||||||
import android.content.res.Resources;
|
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
@ -160,21 +158,6 @@ public final class LocaleUtils {
|
||||||
return LOCALE_MATCH <= level;
|
return LOCALE_MATCH <= level;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the system locale for this process.
|
|
||||||
*
|
|
||||||
* @param res the resources to use. Pass current resources.
|
|
||||||
* @param newLocale the locale to change to.
|
|
||||||
* @return the old locale.
|
|
||||||
*/
|
|
||||||
public static Locale setSystemLocale(final Resources res, final Locale newLocale) {
|
|
||||||
final Configuration conf = res.getConfiguration();
|
|
||||||
final Locale saveLocale = conf.locale;
|
|
||||||
conf.locale = newLocale;
|
|
||||||
res.updateConfiguration(conf, res.getDisplayMetrics());
|
|
||||||
return saveLocale;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static final HashMap<String, Locale> sLocaleCache = new HashMap<>();
|
private static final HashMap<String, Locale> sLocaleCache = new HashMap<>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue