mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-04 10:39:25 +00:00
Simplications
This commit is contained in:
parent
4920a76e19
commit
4c25c3c397
3 changed files with 3 additions and 3 deletions
|
@ -284,7 +284,7 @@ public class FragmentAccounts extends FragmentBase {
|
|||
protected void onException(Bundle args, Throwable ex) {
|
||||
Helper.unexpectedError(getContext(), getViewLifecycleOwner(), ex);
|
||||
}
|
||||
}.execute(getContext(), getViewLifecycleOwner(), args, "accounts:reset");
|
||||
}.execute(this, args, "accounts:reset");
|
||||
}
|
||||
|
||||
private ItemTouchHelper.Callback touchHelper = new ItemTouchHelper.Callback() {
|
||||
|
|
|
@ -1620,7 +1620,7 @@ public class FragmentCompose extends FragmentBase {
|
|||
protected void onException(Bundle args, Throwable ex) {
|
||||
Helper.unexpectedError(getContext(), getViewLifecycleOwner(), ex);
|
||||
}
|
||||
}.execute(getContext(), getViewLifecycleOwner(), args, "compose:picked");
|
||||
}.execute(this, args, "compose:picked");
|
||||
}
|
||||
|
||||
private void handleAddAttachment(Uri uri, final boolean image) {
|
||||
|
|
|
@ -337,7 +337,7 @@ public class FragmentFolder extends FragmentBase {
|
|||
protected void onException(Bundle args, Throwable ex) {
|
||||
Helper.unexpectedError(getContext(), getViewLifecycleOwner(), ex);
|
||||
}
|
||||
}.execute(getContext(), getViewLifecycleOwner(), args, "folder:subscribe");
|
||||
}.execute(this, args, "folder:subscribe");
|
||||
}
|
||||
|
||||
private void onMenuDelete() {
|
||||
|
|
Loading…
Add table
Reference in a new issue