summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-08-04 14:37:25 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-08-04 14:37:25 +0200
commit93fd0d3b2ef06e46df6f0aaa9524f1594a2be02b (patch)
tree3a9eb4f5589490dff923dd29e757323fdefeffb7
parenta05470300d0cba400aa58e5eddd9db3112ccf38e (diff)
downloadAntennaPod-93fd0d3b2ef06e46df6f0aaa9524f1594a2be02b.zip
Removed unused variable
-rw-r--r--src/de/danoeh/antennapod/activity/MiroGuideChannelViewActivity.java5
1 files changed, 1 insertions, 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());