mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 11:42:16 -05:00
Whitespace, Tabs to Spaces
This commit is contained in:
parent
7d32b3d462
commit
be954d729c
@ -23,7 +23,6 @@ public interface CompositeBody extends Body {
|
|||||||
* @throws MessagingException
|
* @throws MessagingException
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public abstract void setUsing7bitTransport() throws MessagingException;
|
public abstract void setUsing7bitTransport() throws MessagingException;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -54,7 +54,7 @@ public class ConditionsTreeNode implements Parcelable {
|
|||||||
* should point to rows representing the nodes of the tree.
|
* should point to rows representing the nodes of the tree.
|
||||||
*
|
*
|
||||||
* @param cursor Cursor pointing to the first of a bunch or rows. Each rows
|
* @param cursor Cursor pointing to the first of a bunch or rows. Each rows
|
||||||
* should contains 1 tree node.
|
* should contains 1 tree node.
|
||||||
* @return A condition tree.
|
* @return A condition tree.
|
||||||
*/
|
*/
|
||||||
public static ConditionsTreeNode buildTreeFromDB(Cursor cursor) {
|
public static ConditionsTreeNode buildTreeFromDB(Cursor cursor) {
|
||||||
|
@ -240,8 +240,8 @@ public class LocalSearch implements SearchSpecification {
|
|||||||
public void addAllowedFolder(String name) {
|
public void addAllowedFolder(String name) {
|
||||||
/*
|
/*
|
||||||
* TODO find folder sub-tree
|
* TODO find folder sub-tree
|
||||||
* - do and on root of it & rest of search
|
* - do and on root of it & rest of search
|
||||||
* - do or between folder nodes
|
* - do or between folder nodes
|
||||||
*/
|
*/
|
||||||
mConditions = and(new SearchCondition(Searchfield.FOLDER, Attribute.EQUALS, name));
|
mConditions = and(new SearchCondition(Searchfield.FOLDER, Attribute.EQUALS, name));
|
||||||
}
|
}
|
||||||
|
@ -58,8 +58,8 @@ public interface SearchSpecification extends Parcelable {
|
|||||||
* By result, only the fields in here are searchable.
|
* By result, only the fields in here are searchable.
|
||||||
*
|
*
|
||||||
* Fields not in here at this moment ( and by effect not searchable ):
|
* Fields not in here at this moment ( and by effect not searchable ):
|
||||||
* id, html_content, internal_date, message_id,
|
* id, html_content, internal_date, message_id,
|
||||||
* preview, mime_type
|
* preview, mime_type
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public enum Searchfield {
|
public enum Searchfield {
|
||||||
@ -92,9 +92,9 @@ public interface SearchSpecification extends Parcelable {
|
|||||||
/**
|
/**
|
||||||
* This class represents 1 value for a certain search field. One
|
* This class represents 1 value for a certain search field. One
|
||||||
* value consists of three things:
|
* value consists of three things:
|
||||||
* an attribute: equals, starts with, contains,...
|
* an attribute: equals, starts with, contains,...
|
||||||
* a searchfield: date, flags, sender, subject,...
|
* a searchfield: date, flags, sender, subject,...
|
||||||
* a value: "apple", "jesse",..
|
* a value: "apple", "jesse",..
|
||||||
*
|
*
|
||||||
* @author dzan
|
* @author dzan
|
||||||
*/
|
*/
|
||||||
|
@ -100,7 +100,7 @@ public class ViewablesTest extends AndroidTestCase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void testTextPlusRfc822Message() throws MessagingException {
|
public void testTextPlusRfc822Message() throws MessagingException {
|
||||||
K9ActivityCommon.setLanguage(getContext(), "en");
|
K9ActivityCommon.setLanguage(getContext(), "en");
|
||||||
Locale.setDefault(Locale.US);
|
Locale.setDefault(Locale.US);
|
||||||
TimeZone.setDefault(TimeZone.getTimeZone("GMT+01:00"));
|
TimeZone.setDefault(TimeZone.getTimeZone("GMT+01:00"));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user