Clean up code

This commit is contained in:
cketti 2013-09-13 00:10:33 +02:00
parent e633814061
commit b95c079a28
1 changed files with 7 additions and 7 deletions

View File

@ -3352,13 +3352,13 @@ public class MessagingController implements Runnable {
builder.setSmallIcon(R.drawable.ic_notify_check_mail);
builder.setWhen(System.currentTimeMillis());
builder.setOngoing(true);
if(!TextUtils.isEmpty(account.getDescription())) {
builder.setTicker(mApplication.getString(R.string.notification_bg_send_ticker,
account.getDescription()));
}else {
builder.setTicker(mApplication.getString(R.string.notification_bg_send_ticker,
account.getEmail()));
}
String accountDescription = account.getDescription();
String accountName = (TextUtils.isEmpty(accountDescription)) ?
account.getEmail() : accountDescription;
builder.setTicker(mApplication.getString(R.string.notification_bg_send_ticker,
accountName));
builder.setContentTitle(mApplication.getString(R.string.notification_bg_send_title));
builder.setContentText(account.getDescription());