Meant to add to revision 313 notes:

Patches were handling uppercase MIME types were submitted by gwillen
in K-9 issue 94 (MimeBodyPart.java and MimeMessage.java)
and
Josh Guilfoyle as part of Android patch 1539 (MimeUtility.java)

Sorry for missing the attribution on the original commit
This commit is contained in:
Daniel Applebaum 2009-01-18 16:35:47 +00:00
parent 2c51862087
commit dc40026b31
3 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ public class MimeBodyPart extends BodyPart {
protected MimeHeader mHeader = new MimeHeader();
protected Body mBody;
protected int mSize;
public MimeBodyPart() throws MessagingException {
this(null);
}

View File

@ -39,7 +39,7 @@ public class MimeMessage extends Message {
protected SimpleDateFormat mDateFormat = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss Z");
protected Body mBody;
protected int mSize;
public MimeMessage() {
/*
* Every new messages gets a Message-ID

View File

@ -28,7 +28,7 @@ import com.android.email.mail.Part;
public class MimeUtility {
public static String unfold(String s) {
if (s == null) {
return null;