Removed unused variable

This commit is contained in:
daniel oeh 2012-08-04 14:37:25 +02:00
parent a05470300d
commit 93fd0d3b2e
1 changed files with 1 additions and 4 deletions

View File

@ -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());