mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-04 08:35:08 -05:00
Removed unnecessary method implementation
Make Pop3Folder.setFlags(Flag[],boolean) throw an UnsupportedOperationException instead of calling a method that does just that.
This commit is contained in:
parent
dc96bf3186
commit
95288b37d7
@ -754,10 +754,8 @@ public class Pop3Store extends Store {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setFlags(Flag[] flags, boolean value)
|
||||
throws MessagingException {
|
||||
Message[] messages = getMessages(null);
|
||||
setFlags(messages, flags, value);
|
||||
public void setFlags(Flag[] flags, boolean value) throws MessagingException {
|
||||
throw new UnsupportedOperationException("POP3: No setFlags(Flag[],boolean)");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user