1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-27 19:52:17 -05:00

combined nested if statements in ImapStore

This commit is contained in:
András Veres-Szentkirályi 2012-07-06 14:23:50 +02:00
parent 57f364ca69
commit 961872edf0

View File

@ -2204,8 +2204,8 @@ public class ImapStore extends Store {
capabilityList = response;
}
if (capabilityList != null) {
if (!capabilityList.isEmpty() && ImapResponseParser.equalsIgnoreCase(capabilityList.get(0), CAPABILITY_CAPABILITY)) {
if (capabilityList != null && !capabilityList.isEmpty() &&
ImapResponseParser.equalsIgnoreCase(capabilityList.get(0), CAPABILITY_CAPABILITY)) {
if (K9.DEBUG) {
Log.d(K9.LOG_TAG, "Saving " + capabilityList.size() + " capabilities for " + getLogId());
}
@ -2218,8 +2218,6 @@ public class ImapStore extends Store {
capabilities.add(((String)capability).toUpperCase(Locale.US));
}
}
}
}
}
return responses;