Remove references to 'text_content' and 'html_content'

This commit is contained in:
cketti 2015-01-10 01:22:39 +01:00
parent ce862c88f8
commit 743e640d8c
3 changed files with 1 additions and 6 deletions

View File

@ -308,8 +308,6 @@ public class LocalMessage extends MimeMessage {
cv.putNull("cc_list");
cv.putNull("bcc_list");
cv.putNull("preview");
cv.putNull("html_content");
cv.putNull("text_content");
cv.putNull("reply_to_list");
cv.putNull("message_part_id");

View File

@ -152,8 +152,6 @@ public class EmailProvider extends ContentProvider {
private interface InternalMessageColumns extends MessageColumns {
public static final String DELETED = "deleted";
public static final String EMPTY = "empty";
public static final String TEXT_CONTENT = "text_content";
public static final String HTML_CONTENT = "html_content";
public static final String MIME_TYPE = "mime_type";
}

View File

@ -140,8 +140,7 @@ public class SqlQueryBuilder {
break;
}
case MESSAGE_CONTENTS: {
columnName = "text_content";
break;
throw new RuntimeException("Searching in message bodies is currently not supported");
}
case REPLY_TO: {
columnName = "reply_to_list";