mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-27 19:22:14 -05:00
Allow to regenerate shared preferences
Merge of r326 to trunk
This commit is contained in:
parent
1edac5a61e
commit
86e06eeabe
@ -12,9 +12,13 @@ public class Preferences {
|
|||||||
private static Preferences mPreferences;
|
private static Preferences mPreferences;
|
||||||
private SharedPreferences mSharedPreferences;
|
private SharedPreferences mSharedPreferences;
|
||||||
|
|
||||||
public static synchronized Preferences getPreferences(Context context)
|
public static synchronized Preferences getPreferences(Context context) {
|
||||||
|
return getPreferences(context, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static synchronized Preferences getPreferences(Context context, boolean force_new)
|
||||||
{
|
{
|
||||||
if (mPreferences == null) {
|
if (mPreferences == null || force_new) {
|
||||||
mPreferences = new Preferences(context);
|
mPreferences = new Preferences(context);
|
||||||
}
|
}
|
||||||
return mPreferences;
|
return mPreferences;
|
||||||
|
Loading…
Reference in New Issue
Block a user