mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-30 05:02:26 -05:00
Added stubs for the added functions needed for the DAMail merge. Did not add @Override. Doing it this way to allow easier testing/modifications in preparation for the merge to trunk. All trunk changes will be committed to the DAMail merge branch next.
This commit is contained in:
parent
2dede98463
commit
34be0269f8
@ -1210,6 +1210,18 @@ public class WebDavStore extends Store {
|
|||||||
public boolean equals(Object o) {
|
public boolean equals(Object o) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getUidFromMessageId(Message message) throws MessagingException {
|
||||||
|
Log.e(Email.LOG_TAG, "Unimplemented method getUidFromMessageId in WebDavStore.WebDavFolder could lead to duplicate messages "
|
||||||
|
+ " being uploaded to the Sent folder");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFlags(Flag[] flags, boolean value) throws MessagingException {
|
||||||
|
Log.e(Email.LOG_TAG, "Unimplemented method setFlags(Flag[], boolean) breaks markAllMessagesAsRead and EmptyTrash");
|
||||||
|
// Try to make this efficient by not retrieving all of the messages
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user