Skip to content

Commit

Permalink
Fix type signature
Browse files Browse the repository at this point in the history
  • Loading branch information
jberkel committed Jun 6, 2015
1 parent aa491a6 commit fc7c817
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.zegoggles.smssync.mail;

import com.fsck.k9.mail.store.StoreConfig;
import com.fsck.k9.mail.NetworkType;

class BackupStoreConfig implements StoreConfig {
private static final String INBOX = "INBOX";
Expand All @@ -17,7 +18,7 @@ class BackupStoreConfig implements StoreConfig {
@Override public boolean subscribedFoldersOnly() {
return false;
}
@Override public boolean useCompression(int i) {
@Override public boolean useCompression(NetworkType type) {
return false;
}
@Override public String getInboxFolderName() {
Expand Down

0 comments on commit fc7c817

Please sign in to comment.