1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Removed (redundant) debug logging from the IMAP parser code.

This commit is contained in:
cketti 2010-10-06 01:50:02 +00:00
parent 548e6e7c77
commit 9b5436d23b

View File

@ -1,7 +1,5 @@
package com.fsck.k9.mail.store;
import android.util.Log;
import com.fsck.k9.K9;
import com.fsck.k9.mail.MessagingException;
import com.fsck.k9.mail.filter.FixedLengthInputStream;
import com.fsck.k9.mail.filter.PeekableInputStream;
@ -65,10 +63,6 @@ public class ImapResponseParser
response.mTag = parseTaggedResponse();
readTokens(response);
}
if (K9.DEBUG && K9.DEBUG_PROTOCOL_IMAP)
{
Log.v(K9.LOG_TAG, "<<< " + response.toString());
}
if (mException != null)
{