1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-12-25 09:08:49 -05:00

simplify a boolean in isMoveCapable

This commit is contained in:
Jesse Vincent 2010-08-29 23:40:14 +00:00
parent 1f399f5904
commit 6e2c5be84c

View File

@ -3665,14 +3665,7 @@ public class MessagingController implements Runnable
public boolean isMoveCapable(Message message)
{
if (!message.getUid().startsWith(K9.LOCAL_UID_PREFIX))
{
return true;
}
else
{
return false;
}
return !message.getUid().startsWith(K9.LOCAL_UID_PREFIX);
}
public boolean isCopyCapable(Message message)
{