1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-02-17 07:30:16 -05:00

minor astyling

This commit is contained in:
Jesse Vincent 2010-07-10 16:41:48 +00:00
parent 0f17fc4a83
commit ab8cdb3522
6 changed files with 15 additions and 12 deletions

View File

@ -34,7 +34,8 @@ public class LauncherShortcuts extends K9ListActivity implements OnItemClickList
super.onCreate(icicle); super.onCreate(icicle);
// finish() immediately if we aren't supposed to be here // finish() immediately if we aren't supposed to be here
if (!Intent.ACTION_CREATE_SHORTCUT.equals(getIntent().getAction())) { if (!Intent.ACTION_CREATE_SHORTCUT.equals(getIntent().getAction()))
{
finish(); finish();
return; return;
} }

View File

@ -527,7 +527,8 @@ public class MessageList
mState.putInt(EXTRA_LIST_POSITION, mListView.getSelectedItemPosition()); mState.putInt(EXTRA_LIST_POSITION, mListView.getSelectedItemPosition());
} }
public void restoreListState() { public void restoreListState()
{
if (mState == null) if (mState == null)
{ {
return; return;

View File

@ -1631,7 +1631,7 @@ public class MessagingController implements Runnable
{ {
if (isMessageSuppressed(account, folder, message )) if (isMessageSuppressed(account, folder, message))
{ {
if (K9.DEBUG) if (K9.DEBUG)
{ {
@ -2752,7 +2752,8 @@ public class MessagingController implements Runnable
t.printStackTrace(ps); t.printStackTrace(ps);
ps.close(); ps.close();
if (subject == null) { if (subject == null)
{
subject = getRootCauseMessage(t); subject = getRootCauseMessage(t);
} }