mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-25 00:58:50 -05:00
simplify a boolean in isMoveCapable
This commit is contained in:
parent
1f399f5904
commit
6e2c5be84c
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user