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

Commit fcd82448 authored by nwuensche's avatar nwuensche
Browse files

Fix import order

parent 416859a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3,8 +3,8 @@ package com.fsck.k9.backend.api
import com.fsck.k9.mail.BodyFactory
import com.fsck.k9.mail.Flag
import com.fsck.k9.mail.Message
import net.thunderbird.core.common.exception.MessagingException
import com.fsck.k9.mail.Part
import net.thunderbird.core.common.exception.MessagingException

interface Backend {
    val supportsFlags: Boolean
+1 −1
Original line number Diff line number Diff line
package com.fsck.k9.backend.api

import com.fsck.k9.mail.FolderType
import net.thunderbird.core.common.exception.MessagingException
import java.io.Closeable
import net.thunderbird.core.common.exception.MessagingException

interface BackendStorage {
    fun getFolder(folderServerId: String): BackendFolder
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@ package net.thunderbird.backend.imap

import com.fsck.k9.backend.imap.ImapBackend
import com.fsck.k9.mail.FolderType
import net.thunderbird.core.common.exception.MessagingException
import com.fsck.k9.mail.folders.FolderServerId
import com.fsck.k9.mail.store.imap.ImapStore
import kotlinx.coroutines.CoroutineDispatcher
@@ -11,6 +10,7 @@ import kotlinx.coroutines.withContext
import net.thunderbird.backend.api.BackendFactory
import net.thunderbird.backend.api.folder.RemoteFolderCreationOutcome
import net.thunderbird.backend.api.folder.RemoteFolderCreator
import net.thunderbird.core.common.exception.MessagingException
import net.thunderbird.core.logging.Logger
import net.thunderbird.core.outcome.Outcome
import net.thunderbird.feature.mail.account.api.BaseAccount
+1 −1
Original line number Diff line number Diff line
package com.fsck.k9.backend.jmap

import com.fsck.k9.mail.Message
import net.thunderbird.core.common.exception.MessagingException
import com.squareup.moshi.Moshi
import net.thunderbird.core.common.exception.MessagingException
import net.thunderbird.core.logging.legacy.Log
import okhttp3.MediaType
import okhttp3.MediaType.Companion.toMediaType
+1 −1
Original line number Diff line number Diff line
package com.fsck.k9.backend.pop3

import com.fsck.k9.mail.Flag
import net.thunderbird.core.common.exception.MessagingException
import com.fsck.k9.mail.store.pop3.Pop3Store
import net.thunderbird.core.common.exception.MessagingException

internal class CommandSetFlag(private val pop3Store: Pop3Store) {

Loading