mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-02 14:02:17 -05:00
combined nested if statements in ImapStore
This commit is contained in:
parent
57f364ca69
commit
961872edf0
@ -2204,21 +2204,19 @@ public class ImapStore extends Store {
|
|||||||
capabilityList = response;
|
capabilityList = response;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (capabilityList != null) {
|
if (capabilityList != null && !capabilityList.isEmpty() &&
|
||||||
if (!capabilityList.isEmpty() && ImapResponseParser.equalsIgnoreCase(capabilityList.get(0), CAPABILITY_CAPABILITY)) {
|
ImapResponseParser.equalsIgnoreCase(capabilityList.get(0), CAPABILITY_CAPABILITY)) {
|
||||||
if (K9.DEBUG) {
|
if (K9.DEBUG) {
|
||||||
Log.d(K9.LOG_TAG, "Saving " + capabilityList.size() + " capabilities for " + getLogId());
|
Log.d(K9.LOG_TAG, "Saving " + capabilityList.size() + " capabilities for " + getLogId());
|
||||||
|
}
|
||||||
|
for (Object capability : capabilityList) {
|
||||||
|
if (capability instanceof String) {
|
||||||
|
// if (K9.DEBUG)
|
||||||
|
// {
|
||||||
|
// Log.v(K9.LOG_TAG, "Saving capability '" + capability + "' for " + getLogId());
|
||||||
|
// }
|
||||||
|
capabilities.add(((String)capability).toUpperCase(Locale.US));
|
||||||
}
|
}
|
||||||
for (Object capability : capabilityList) {
|
|
||||||
if (capability instanceof String) {
|
|
||||||
// if (K9.DEBUG)
|
|
||||||
// {
|
|
||||||
// Log.v(K9.LOG_TAG, "Saving capability '" + capability + "' for " + getLogId());
|
|
||||||
// }
|
|
||||||
capabilities.add(((String)capability).toUpperCase(Locale.US));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user