Simplications

This commit is contained in:
M66B 2019-04-27 16:01:37 +02:00
parent 4920a76e19
commit 4c25c3c397
3 changed files with 3 additions and 3 deletions

View File

@ -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() {

View File

@ -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) {

View File

@ -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() {