Refactoring

This commit is contained in:
M66B
2020-04-16 17:09:33 +02:00
parent 2dfabba508
commit a65e170197
2 changed files with 2 additions and 3 deletions

View File

@@ -99,8 +99,6 @@ public class FragmentPop extends FragmentBase {
private static final int REQUEST_COLOR = 1;
private static final int REQUEST_DELETE = 2;
private static final int MAX_MESSAGES = 100;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
@@ -560,7 +558,7 @@ public class FragmentPop extends FragmentBase {
cbLeaveDeleted.setChecked(account == null ? true : account.leave_deleted);
cbLeaveDevice.setChecked(account == null ? false : account.leave_on_device);
etMax.setText(Integer.toString(account == null || account.max_messages == null
? MAX_MESSAGES : account.max_messages));
? EntityAccount.DEFAULT_MAX_MESSAGES : account.max_messages));
etInterval.setText(account == null ? "" : Long.toString(account.poll_interval));
new SimpleTask<EntityAccount>() {