1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Move auto-unboxing out of if-clause

This commit is contained in:
cketti 2012-07-07 15:41:55 +02:00
parent c359eb3cb7
commit a37c95b456

View File

@ -3092,7 +3092,7 @@ public class ImapStore extends Store {
List<Long> newSeqs = new ArrayList<Long>();
Iterator<Long> flagIter = flagSyncMsgSeqs.iterator();
while (flagIter.hasNext()) {
Long flagMsg = flagIter.next();
long flagMsg = flagIter.next();
if (flagMsg >= msgSeq) {
flagIter.remove();
if (flagMsg > msgSeq) {