From 93fd0d3b2ef06e46df6f0aaa9524f1594a2be02b Mon Sep 17 00:00:00 2001 From: daniel oeh Date: Sat, 4 Aug 2012 14:37:25 +0200 Subject: [PATCH] Removed unused variable --- .../antennapod/activity/MiroGuideChannelViewActivity.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/de/danoeh/antennapod/activity/MiroGuideChannelViewActivity.java b/src/de/danoeh/antennapod/activity/MiroGuideChannelViewActivity.java index 507818468..abcde4019 100644 --- a/src/de/danoeh/antennapod/activity/MiroGuideChannelViewActivity.java +++ b/src/de/danoeh/antennapod/activity/MiroGuideChannelViewActivity.java @@ -97,10 +97,7 @@ public class MiroGuideChannelViewActivity extends SherlockActivity { if (exception == null) { txtvTitle.setText(channel.getName()); txtVDescription.setText(channel.getDescription()); - String[] entryNames = new String[channel.getItems().size()]; - for (int i = 0; i < channel.getItems().size(); i++) { - entryNames[i] = channel.getItems().get(i).getName(); - } + MiroGuideItemlistAdapter listAdapter = new MiroGuideItemlistAdapter( MiroGuideChannelViewActivity.this, 0, channel.getItems());