mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 21:33:53 +01:00
Typo fixes (#4461)
* Fixed typo on class documentation of TextUtils * corrected comma placement in documentation * Fixed typos in comments
This commit is contained in:
parent
2be828c50e
commit
a3cbe3659c
3 changed files with 4 additions and 4 deletions
|
|
@ -464,7 +464,7 @@ public class LoginActivity extends AccountAuthenticatorActivity {
|
|||
@Override
|
||||
protected void onSaveInstanceState(Bundle outState) {
|
||||
// if progressDialog is visible during the configuration change then store state as true else false so that
|
||||
// we maintain visiblity of progressDailog after configuration change
|
||||
// we maintain visibility of progressDailog after configuration change
|
||||
if(progressDialog!=null&&progressDialog.isShowing()) {
|
||||
outState.putBoolean(saveProgressDailog,true);
|
||||
} else {
|
||||
|
|
@ -472,7 +472,7 @@ public class LoginActivity extends AccountAuthenticatorActivity {
|
|||
}
|
||||
outState.putString(saveErrorMessage,errorMessage.getText().toString()); //Save the errorMessage
|
||||
outState.putString(saveUsername,getUsername()); // Save the username
|
||||
outState.putString(savePassword,getPassword()); // Save thte password
|
||||
outState.putString(savePassword,getPassword()); // Save the password
|
||||
}
|
||||
private String getUsername() {
|
||||
return usernameEdit.getText().toString();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue