Revert some more changes

This commit is contained in:
wb9688 2020-04-03 15:48:38 +02:00
parent fed9197d23
commit 15a53d299d
2 changed files with 5 additions and 6 deletions

View file

@ -46,8 +46,7 @@ public class ChannelInfoItemHolder extends ChannelMiniInfoItemHolder {
if (!(infoItem instanceof ChannelInfoItem)) { if (!(infoItem instanceof ChannelInfoItem)) {
return; return;
} }
final ChannelInfoItem item; final ChannelInfoItem item = (ChannelInfoItem) infoItem;
item = (ChannelInfoItem) infoItem;
itemChannelDescriptionView.setText(item.getDescription()); itemChannelDescriptionView.setText(item.getDescription());
} }

View file

@ -179,10 +179,6 @@ public abstract class BaseImportExportService extends Service {
notificationManager.notify(getNotificationId(), notificationBuilder.build()); notificationManager.notify(getNotificationId(), notificationBuilder.build());
} }
/*//////////////////////////////////////////////////////////////////////////
// Toast
//////////////////////////////////////////////////////////////////////////*/
protected NotificationCompat.Builder createNotification() { protected NotificationCompat.Builder createNotification() {
return new NotificationCompat.Builder(this, getString(R.string.notification_channel_id)) return new NotificationCompat.Builder(this, getString(R.string.notification_channel_id))
.setOngoing(true) .setOngoing(true)
@ -192,6 +188,10 @@ public abstract class BaseImportExportService extends Service {
.setContentTitle(getString(getTitle())); .setContentTitle(getString(getTitle()));
} }
/*//////////////////////////////////////////////////////////////////////////
// Toast
//////////////////////////////////////////////////////////////////////////*/
protected void showToast(@StringRes final int message) { protected void showToast(@StringRes final int message) {
showToast(getString(message)); showToast(getString(message));
} }