Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
rchtgpt committed Dec 25, 2019
1 parent 2f941ff commit f25598f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ public void startLoginActivity() {
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
Intent intent = new Intent(PassCodeActivity.this,
Intent i = new Intent(PassCodeActivity.this,
LoginActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.
FLAG_ACTIVITY_CLEAR_TASK);
startActivity(intent);
startActivity(i);
finish();
}
})
Expand Down

0 comments on commit f25598f

Please sign in to comment.