aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/ui/AbstractImageAdapter.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/ui/AbstractImageAdapter.java')
-rw-r--r--main/src/cgeo/geocaching/ui/AbstractImageAdapter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/ui/AbstractImageAdapter.java b/main/src/cgeo/geocaching/ui/AbstractImageAdapter.java
index 075bfe6..22ec603 100644
--- a/main/src/cgeo/geocaching/ui/AbstractImageAdapter.java
+++ b/main/src/cgeo/geocaching/ui/AbstractImageAdapter.java
@@ -48,7 +48,7 @@ public abstract class AbstractImageAdapter extends BaseAdapter {
// create a new ImageView for each item referenced by the Adapter
@Override
public View getView(final int position, final View convertView, final ViewGroup parent) {
- ImageView imageView;
+ final ImageView imageView;
if (convertView == null) { // if it's not recycled, initialize some attributes
imageView = (ImageView) LayoutInflater.from(context).inflate(R.layout.grid_image, null);
} else {