mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 14:46:31 +02:00
Seem to be a formatting bug in Android Studio
This commit is contained in:
@@ -135,7 +135,7 @@ public class FragmentMessage extends FragmentEx {
|
||||
URLSpan[] link = buffer.getSpans(off, off, URLSpan.class);
|
||||
if (link.length != 0) {
|
||||
Bundle args = new Bundle();
|
||||
args.putString("link", link[0].getURL());
|
||||
args.putString("link" , link[0].getURL());
|
||||
|
||||
FragmentWebView fragment = new FragmentWebView();
|
||||
fragment.setArguments(args);
|
||||
@@ -341,7 +341,7 @@ public class FragmentMessage extends FragmentEx {
|
||||
|
||||
private void onActionThread(long id) {
|
||||
Bundle args = new Bundle();
|
||||
args.putLong("thread", id); // message ID
|
||||
args.putLong("thread" , id); // message ID
|
||||
|
||||
FragmentMessages fragment = new FragmentMessages();
|
||||
fragment.setArguments(args);
|
||||
@@ -353,14 +353,14 @@ public class FragmentMessage extends FragmentEx {
|
||||
|
||||
private void onActionForward(long id) {
|
||||
startActivity(new Intent(getContext(), ActivityCompose.class)
|
||||
.putExtra("id", id)
|
||||
.putExtra("action", "forward"));
|
||||
.putExtra("id" , id)
|
||||
.putExtra("action" , "forward"));
|
||||
}
|
||||
|
||||
private void onActionReplyAll(long id) {
|
||||
startActivity(new Intent(getContext(), ActivityCompose.class)
|
||||
.putExtra("id", id)
|
||||
.putExtra("action", "reply_all"));
|
||||
.putExtra("id" , id)
|
||||
.putExtra("action" , "reply_all"));
|
||||
}
|
||||
|
||||
private void onActionDelete(final long id) {
|
||||
@@ -443,7 +443,7 @@ public class FragmentMessage extends FragmentEx {
|
||||
|
||||
private void onActionMove(final long id) {
|
||||
Bundle args = new Bundle();
|
||||
args.putLong("id", id);
|
||||
args.putLong("id" , id);
|
||||
getLoaderManager().restartLoader(ActivityView.LOADER_MESSAGE_MOVE, args, moveLoaderCallbacks).forceLoad();
|
||||
}
|
||||
|
||||
@@ -469,8 +469,8 @@ public class FragmentMessage extends FragmentEx {
|
||||
|
||||
private void onActionReply(long id) {
|
||||
startActivity(new Intent(getContext(), ActivityCompose.class)
|
||||
.putExtra("id", id)
|
||||
.putExtra("action", "reply"));
|
||||
.putExtra("id" , id)
|
||||
.putExtra("action" , "reply"));
|
||||
}
|
||||
|
||||
private static class MoveLoader extends AsyncTaskLoader<List<EntityFolder>> {
|
||||
|
||||
Reference in New Issue
Block a user