mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
remove unused variable
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
35ff763950
commit
32b04cb07e
1 changed files with 0 additions and 7 deletions
|
@ -34,11 +34,6 @@ public abstract class BaseActivity extends AppCompatActivity {
|
|||
*/
|
||||
private OCCapability mCapabilities;
|
||||
|
||||
/**
|
||||
* Flag to signal that the activity will is finishing to enforce the creation of an ownCloud {@link Account}.
|
||||
*/
|
||||
private boolean mRedirectingToSetupAccount;
|
||||
|
||||
/**
|
||||
* Flag to signal when the value of mAccount was set.
|
||||
*/
|
||||
|
@ -117,7 +112,6 @@ public abstract class BaseActivity extends AppCompatActivity {
|
|||
if (newAccount == null) {
|
||||
/// no account available: force account creation
|
||||
createAccount(true);
|
||||
mRedirectingToSetupAccount = true;
|
||||
mAccountWasSet = false;
|
||||
mAccountWasRestored = false;
|
||||
|
||||
|
@ -226,7 +220,6 @@ public abstract class BaseActivity extends AppCompatActivity {
|
|||
|
||||
@Override
|
||||
public void run(AccountManagerFuture<Bundle> future) {
|
||||
BaseActivity.this.mRedirectingToSetupAccount = false;
|
||||
boolean accountWasSet = false;
|
||||
if (future != null) {
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue