From 791ecccb1d7a1f5eac9e96c8a28630d0e27d3b04 Mon Sep 17 00:00:00 2001 From: Mark Murphy Date: Tue, 25 Oct 2011 14:16:19 -0400 Subject: [PATCH] eliminated unused code --- .../src/com/commonsware/android/eu4you/CountriesFragment.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/Fragments/EU4You_6/src/com/commonsware/android/eu4you/CountriesFragment.java b/Fragments/EU4You_6/src/com/commonsware/android/eu4you/CountriesFragment.java index f955d04..89f3f89 100644 --- a/Fragments/EU4You_6/src/com/commonsware/android/eu4you/CountriesFragment.java +++ b/Fragments/EU4You_6/src/com/commonsware/android/eu4you/CountriesFragment.java @@ -158,10 +158,8 @@ public View getView(int position, View convertView, static class CountryWrapper { private TextView name=null; private ImageView flag=null; - private View row=null; CountryWrapper(View row) { - this.row=row; name=(TextView)row.findViewById(R.id.name); flag=(ImageView)row.findViewById(R.id.flag); }