mirror of https://github.com/M66B/FairEmail.git
Refactoring
This commit is contained in:
parent
2dfabba508
commit
a65e170197
|
@ -52,6 +52,7 @@ public class EntityAccount extends EntityOrder implements Serializable {
|
||||||
// https://tools.ietf.org/html/rfc2177
|
// https://tools.ietf.org/html/rfc2177
|
||||||
static final int DEFAULT_KEEP_ALIVE_INTERVAL = 15; // minutes
|
static final int DEFAULT_KEEP_ALIVE_INTERVAL = 15; // minutes
|
||||||
static final int DEFAULT_POLL_INTERVAL = 15; // minutes
|
static final int DEFAULT_POLL_INTERVAL = 15; // minutes
|
||||||
|
static final int DEFAULT_MAX_MESSAGES = 100; // POP3
|
||||||
|
|
||||||
static final int TYPE_IMAP = 0;
|
static final int TYPE_IMAP = 0;
|
||||||
static final int TYPE_POP = 1;
|
static final int TYPE_POP = 1;
|
||||||
|
|
|
@ -99,8 +99,6 @@ public class FragmentPop extends FragmentBase {
|
||||||
private static final int REQUEST_COLOR = 1;
|
private static final int REQUEST_COLOR = 1;
|
||||||
private static final int REQUEST_DELETE = 2;
|
private static final int REQUEST_DELETE = 2;
|
||||||
|
|
||||||
private static final int MAX_MESSAGES = 100;
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onCreate(Bundle savedInstanceState) {
|
public void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
|
@ -560,7 +558,7 @@ public class FragmentPop extends FragmentBase {
|
||||||
cbLeaveDeleted.setChecked(account == null ? true : account.leave_deleted);
|
cbLeaveDeleted.setChecked(account == null ? true : account.leave_deleted);
|
||||||
cbLeaveDevice.setChecked(account == null ? false : account.leave_on_device);
|
cbLeaveDevice.setChecked(account == null ? false : account.leave_on_device);
|
||||||
etMax.setText(Integer.toString(account == null || account.max_messages == null
|
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));
|
etInterval.setText(account == null ? "" : Long.toString(account.poll_interval));
|
||||||
|
|
||||||
new SimpleTask<EntityAccount>() {
|
new SimpleTask<EntityAccount>() {
|
||||||
|
|
Loading…
Reference in New Issue