mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-15 14:05:05 -05:00
Add missing @Override annotation and whitespace fixes
This commit is contained in:
parent
f793831498
commit
5f638a02e2
@ -12,18 +12,19 @@ import com.fsck.k9.activity.K9Activity;
|
||||
|
||||
public class WelcomeMessage extends K9Activity implements OnClickListener{
|
||||
|
||||
public static void showWelcomeMessage(Context context) {
|
||||
public static void showWelcomeMessage(Context context) {
|
||||
Intent intent = new Intent(context, WelcomeMessage.class);
|
||||
context.startActivity(intent);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle icicle) {
|
||||
super.onCreate(icicle);
|
||||
setContentView(R.layout.welcome_message);
|
||||
((Button) findViewById(R.id.next)).setOnClickListener(this);
|
||||
}
|
||||
@Override
|
||||
public void onCreate(Bundle icicle) {
|
||||
super.onCreate(icicle);
|
||||
setContentView(R.layout.welcome_message);
|
||||
((Button) findViewById(R.id.next)).setOnClickListener(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClick(View view) {
|
||||
if (view.getId() == R.id.next) {
|
||||
AccountSetupBasics.actionNewAccount(this);
|
||||
|
Loading…
Reference in New Issue
Block a user