Fix problem w/ ExchangeSender instantiation

Bug: 4334119
Change-Id: Ic900d08a3826754d2807ca84cbb9b8f2f4e28fc3
This commit is contained in:
Marc Blank 2011-04-22 18:13:47 -07:00
parent a6e6b9969a
commit cbb2abc80e
1 changed files with 5 additions and 3 deletions

View File

@ -17,6 +17,8 @@
package com.android.email.mail.transport;
import com.android.email.mail.Sender;
import com.android.emailcommon.mail.MessagingException;
import com.android.emailcommon.provider.EmailContent.Account;
import android.content.Context;
@ -29,11 +31,11 @@ public class ExchangeSender extends Sender {
/**
* Factory method.
*/
public static Sender newInstance(Context context, String uri) {
return new ExchangeSender(context, uri);
public static Sender newInstance(Account account, Context context) throws MessagingException {
return new ExchangeSender(context, account);
}
private ExchangeSender(Context context, String _uri) {
private ExchangeSender(Context context, Account account) {
}
@Override