Remove comments

This commit is contained in:
misaochan 2016-08-13 18:57:12 +12:00
parent 81dc0b791a
commit f2d447aeea

View file

@ -94,9 +94,7 @@ public class LoginActivity extends AccountAuthenticatorActivity {
// FIXME: If the user turns it off, it shouldn't be auto turned back on
ContentResolver.setSyncAutomatically(account, ContributionsContentProvider.AUTHORITY, true); // Enable sync by default!
ContentResolver.setSyncAutomatically(account, ModificationsContentProvider.AUTHORITY, true); // Enable sync by default!
//FIXME: This is supposed to return user to ContributionsActivity (launcher activity), but is instead taking users back to SignupActivity
//context.finish();
Intent intent = new Intent(context, ContributionsActivity.class);
startActivity(intent);
@ -250,8 +248,6 @@ public class LoginActivity extends AccountAuthenticatorActivity {
//Called when Sign Up button is clicked
public void signUp(View view) {
Intent intent = new Intent(this, SignupActivity.class);
// FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS
//intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);
}
}