Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2efc8999 authored by Hari's avatar Hari
Browse files

Cleanup

parent e7dd231a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -111,7 +111,7 @@ public class ImapFolder extends Folder<ImapMessage> {
        return prefixedName;
    }

    public List<ImapResponse> executeSimpleCommand(String command) throws MessagingException, IOException {
    private List<ImapResponse> executeSimpleCommand(String command) throws MessagingException, IOException {
        return handleUntaggedResponses(connection.executeSimpleCommand(command));
    }

+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ import com.fsck.k9.mail.internet.MimeMessage;


public class ImapMessage extends MimeMessage {
    public ImapMessage(String uid, Folder folder) {
    ImapMessage(String uid, Folder folder) {
        this.mUid = uid;
        this.mFolder = folder;
    }
+3 −4
Original line number Diff line number Diff line
package com.fsck.k9.mail.store.imap;


import com.fsck.k9.mail.K9MailLib;
import com.fsck.k9.mail.filter.FixedLengthInputStream;
import com.fsck.k9.mail.filter.PeekableInputStream;

import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

import com.fsck.k9.mail.K9MailLib;
import com.fsck.k9.mail.filter.FixedLengthInputStream;
import com.fsck.k9.mail.filter.PeekableInputStream;
import timber.log.Timber;

import static com.fsck.k9.mail.K9MailLib.DEBUG_PROTOCOL_IMAP;