Spelling mistake fixes (#2151)

* Spelling mistake fixes

* Spelling mistake fix
This commit is contained in:
Adam Jones 2018-12-21 13:20:52 +00:00 committed by neslihanturan
parent d31574f6cd
commit fb3136ab19
31 changed files with 107 additions and 116 deletions

View file

@ -90,7 +90,7 @@ public class LoginActivity extends AccountAuthenticatorActivity {
private String resultantError;
private static final String RESULTANT_ERROR = "resultantError";
private static final String ERROR_MESSAGE_SHOWN = "errorMessageShown";
private static final String LOGING_IN = "logingIn";
private static final String LOGGING_IN = "loggingIn";
@Override
public void onCreate(Bundle savedInstanceState) {
@ -371,7 +371,7 @@ public class LoginActivity extends AccountAuthenticatorActivity {
@Override
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
outState.putBoolean(LOGING_IN, loginCurrentlyInProgress);
outState.putBoolean(LOGGING_IN, loginCurrentlyInProgress);
outState.putBoolean(ERROR_MESSAGE_SHOWN, errorMessageShown);
outState.putString(RESULTANT_ERROR, resultantError);
}
@ -379,7 +379,7 @@ public class LoginActivity extends AccountAuthenticatorActivity {
@Override
protected void onRestoreInstanceState(Bundle savedInstanceState) {
super.onRestoreInstanceState(savedInstanceState);
loginCurrentlyInProgress = savedInstanceState.getBoolean(LOGING_IN, false);
loginCurrentlyInProgress = savedInstanceState.getBoolean(LOGGING_IN, false);
errorMessageShown = savedInstanceState.getBoolean(ERROR_MESSAGE_SHOWN, false);
if (loginCurrentlyInProgress){
performLogin();