mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-24 02:12:15 -05:00
Folder.fetchPart() is called when it shouldn't be. Disabled the exception for now. See issue 1733
This commit is contained in:
parent
953fd8f5ef
commit
2aac012282
@ -2,7 +2,9 @@ package com.fsck.k9.mail;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import android.util.Log;
|
||||
import com.fsck.k9.Account;
|
||||
import com.fsck.k9.K9;
|
||||
import com.fsck.k9.Preferences;
|
||||
import com.fsck.k9.controller.MessageRetrievalListener;
|
||||
|
||||
@ -138,7 +140,11 @@ public abstract class Folder
|
||||
public void fetchPart(Message message, Part part,
|
||||
MessageRetrievalListener listener) throws MessagingException
|
||||
{
|
||||
throw new RuntimeException("fetchPart() not implemented.");
|
||||
// This is causing trouble. Disabled for now. See issue 1733
|
||||
//throw new RuntimeException("fetchPart() not implemented.");
|
||||
|
||||
if (K9.DEBUG)
|
||||
Log.d(K9.LOG_TAG, "fetchPart() not implemented.");
|
||||
}
|
||||
|
||||
public abstract void delete(boolean recurse) throws MessagingException;
|
||||
|
Loading…
Reference in New Issue
Block a user