mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-12 12:35:04 -05:00
Move auto-unboxing out of if-clause
This commit is contained in:
parent
c359eb3cb7
commit
a37c95b456
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user