mirror of
https://github.com/moparisthebest/k-9
synced 2025-01-31 07:10:14 -05:00
Kill a once-used temporary variable
This commit is contained in:
parent
945d4d7c32
commit
6a6c86d117
@ -3489,8 +3489,7 @@ public class MessagingController implements Runnable
|
||||
|
||||
localFolder.open(OpenMode.READ_WRITE);
|
||||
|
||||
int localMessages = localFolder.getMessageCount();
|
||||
if (localMessages > 0)
|
||||
if (localFolder.getMessageCount() > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user