mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-27 16:10:58 +01:00
Seem to be a formatting bug in Android Studio
This commit is contained in:
@@ -33,10 +33,10 @@ import static android.arch.persistence.room.ForeignKey.CASCADE;
|
||||
@Entity(
|
||||
tableName = EntityFolder.TABLE_NAME,
|
||||
foreignKeys = {
|
||||
@ForeignKey(childColumns = "account", entity = EntityAccount.class, parentColumns = "id", onDelete = CASCADE)
|
||||
@ForeignKey(childColumns = "account" , entity = EntityAccount.class, parentColumns = "id" , onDelete = CASCADE)
|
||||
},
|
||||
indices = {
|
||||
@Index(value = {"account", "name"}, unique = true),
|
||||
@Index(value = {"account" , "name"}, unique = true),
|
||||
@Index(value = {"account"}),
|
||||
@Index(value = {"name"}),
|
||||
@Index(value = {"type"})
|
||||
@@ -55,10 +55,10 @@ public class EntityFolder {
|
||||
static final String TYPE_USER = "User";
|
||||
|
||||
static final List<String> SYSTEM_FOLDER_ATTR = Arrays.asList(
|
||||
"All",
|
||||
"Drafts",
|
||||
"Trash",
|
||||
"Junk",
|
||||
"All" ,
|
||||
"Drafts" ,
|
||||
"Trash" ,
|
||||
"Junk" ,
|
||||
"Sent"
|
||||
);
|
||||
static final List<String> SYSTEM_FOLDER_TYPE = Arrays.asList(
|
||||
|
||||
Reference in New Issue
Block a user