mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-18 22:26:30 +01:00
move related methods together
This commit is contained in:
parent
fe819982da
commit
3e289adc18
1 changed files with 5 additions and 5 deletions
|
@ -199,11 +199,6 @@ public class XWPrefs {
|
|||
clearPrefsKey( context, R.string.key_gcm_regid );
|
||||
}
|
||||
|
||||
public static boolean getDefaultLocInternal( Context context )
|
||||
{
|
||||
return getPrefsBoolean( context, R.string.key_default_loc, true );
|
||||
}
|
||||
|
||||
public static boolean getHaveCheckedSMS( Context context )
|
||||
{
|
||||
return getPrefsBoolean( context, R.string.key_checked_sms, false );
|
||||
|
@ -222,6 +217,11 @@ public class XWPrefs {
|
|||
return result;
|
||||
}
|
||||
|
||||
public static boolean getDefaultLocInternal( Context context )
|
||||
{
|
||||
return getPrefsBoolean( context, R.string.key_default_loc, true );
|
||||
}
|
||||
|
||||
protected static String getPrefsString( Context context, int keyID )
|
||||
{
|
||||
String key = context.getString( keyID );
|
||||
|
|
Loading…
Reference in a new issue