1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-23 18:02:15 -05:00

Move settings to the right place

This commit is contained in:
Jan Berkel 2014-12-20 03:03:06 +01:00
parent 2eecb2d2c5
commit 1bd74ad263
3 changed files with 2 additions and 4 deletions

View File

@ -14,7 +14,6 @@ import com.fsck.k9.mail.MessagingException;
import com.fsck.k9.mail.filter.Base64;
import com.fsck.k9.mail.filter.PeekableInputStream;
import com.fsck.k9.mail.ssl.TrustedSocketFactory;
import com.fsck.k9.mail.transport.imap.ImapSettings;
import com.jcraft.jzlib.JZlib;
import com.jcraft.jzlib.ZOutputStream;

View File

@ -1,4 +1,4 @@
package com.fsck.k9.mail.transport.imap;
package com.fsck.k9.mail.store.imap;
import com.fsck.k9.mail.AuthType;
import com.fsck.k9.mail.ConnectionSecurity;
@ -7,7 +7,7 @@ import com.fsck.k9.mail.store.imap.ImapStore;
/**
* Settings source for IMAP. Implemented in order to remove coupling between {@link ImapStore} and {@link com.fsck.k9.mail.store.ImapConnection}.
*/
public interface ImapSettings {
interface ImapSettings {
String getHost();
int getPort();

View File

@ -63,7 +63,6 @@ import com.fsck.k9.mail.internet.MimeUtility;
import com.fsck.k9.mail.ssl.TrustedSocketFactory;
import com.fsck.k9.mail.store.RemoteStore;
import com.fsck.k9.mail.store.StoreConfig;
import com.fsck.k9.mail.transport.imap.ImapSettings;
import com.beetstra.jutf7.CharsetProvider;