1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 04:35:57 +00:00

Simplification

This commit is contained in:
M66B 2020-06-06 11:28:13 +02:00
parent aeec8d2e0d
commit b546d9f0a4

View file

@ -1059,12 +1059,10 @@ public class FragmentRule extends FragmentBase {
}
private static class AccountFolder {
EntityAccount account;
EntityFolder folder;
String name;
public AccountFolder(EntityAccount account, EntityFolder folder, Context context) {
this.account = account;
this.folder = folder;
this.name = account.name + "/" + EntityFolder.localizeName(context, folder.name);
}