diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2012-08-04 14:37:25 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2012-08-04 14:37:25 +0200 |
commit | 93fd0d3b2ef06e46df6f0aaa9524f1594a2be02b (patch) | |
tree | 3a9eb4f5589490dff923dd29e757323fdefeffb7 /src | |
parent | a05470300d0cba400aa58e5eddd9db3112ccf38e (diff) | |
download | AntennaPod-93fd0d3b2ef06e46df6f0aaa9524f1594a2be02b.zip |
Removed unused variable
Diffstat (limited to 'src')
-rw-r--r-- | src/de/danoeh/antennapod/activity/MiroGuideChannelViewActivity.java | 5 |
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()); |