summaryrefslogtreecommitdiffstats
path: root/src/com/android/browser/AddNewBookmark.java
diff options
context:
space:
mode:
authorHenrik Baard <henrik.baard@sonyericsson.com>2010-12-06 15:18:53 +0100
committerHenrik Baard <henrik.baard@sonyericsson.com>2010-12-06 15:18:53 +0100
commitc7266d4fb90041b8e7bf806f479b16efef1039a0 (patch)
treee76fc3014204fd74b50ce594b4fc8d3a316c1512 /src/com/android/browser/AddNewBookmark.java
parentac573f4b142c3c8b42dd0ab19fd1f4f9e47b5fa5 (diff)
downloadandroid_packages_apps_Gello-c7266d4fb90041b8e7bf806f479b16efef1039a0.tar.gz
android_packages_apps_Gello-c7266d4fb90041b8e7bf806f479b16efef1039a0.tar.bz2
android_packages_apps_Gello-c7266d4fb90041b8e7bf806f479b16efef1039a0.zip
Unused variables in AddNewBookmark
The fields mTextView and mImageView are not used, and should be removed. Change-Id: Iaa5211b1f36e19b68d42bc925f8ace8641535a2c
Diffstat (limited to 'src/com/android/browser/AddNewBookmark.java')
-rw-r--r--src/com/android/browser/AddNewBookmark.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/com/android/browser/AddNewBookmark.java b/src/com/android/browser/AddNewBookmark.java
index 5308f6b5..5d6a1662 100644
--- a/src/com/android/browser/AddNewBookmark.java
+++ b/src/com/android/browser/AddNewBookmark.java
@@ -18,7 +18,6 @@ package com.android.browser;
import android.content.Context;
import android.view.LayoutInflater;
-import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
@@ -28,9 +27,7 @@ import android.widget.TextView;
// FIXME: Remove BrowserBookmarkItem
class AddNewBookmark extends LinearLayout {
- private TextView mTextView;
private TextView mUrlText;
- private ImageView mImageView;
/**
* Instantiate a bookmark item, including a default favicon.
@@ -43,9 +40,7 @@ class AddNewBookmark extends LinearLayout {
setWillNotDraw(false);
LayoutInflater factory = LayoutInflater.from(context);
factory.inflate(R.layout.add_new_bookmark, this);
- mTextView = (TextView) findViewById(R.id.title);
mUrlText = (TextView) findViewById(R.id.url);
- mImageView = (ImageView) findViewById(R.id.favicon);
}
/**