summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/IconCache.java
diff options
context:
space:
mode:
authorMichael Jurka <mikejurka@google.com>2011-11-22 21:02:29 -0800
committerMichael Jurka <mikejurka@google.com>2011-11-28 10:51:22 -0800
commit92f3d46cf35e78891f73226e81f8ca7e9a7f4d92 (patch)
treef4fafb2bfa47a024b40cc2c75a990a43fb9f022b /src/com/android/launcher2/IconCache.java
parent8171d8ce48765cbc9e6ed96ac3dc173a8969616d (diff)
downloadandroid_packages_apps_Trebuchet-92f3d46cf35e78891f73226e81f8ca7e9a7f4d92.tar.gz
android_packages_apps_Trebuchet-92f3d46cf35e78891f73226e81f8ca7e9a7f4d92.tar.bz2
android_packages_apps_Trebuchet-92f3d46cf35e78891f73226e81f8ca7e9a7f4d92.zip
Clean up unused code and import declarations
Change-Id: If36fd2d99a51b07290b13f697b3ea08d31feb023
Diffstat (limited to 'src/com/android/launcher2/IconCache.java')
-rw-r--r--src/com/android/launcher2/IconCache.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/com/android/launcher2/IconCache.java b/src/com/android/launcher2/IconCache.java
index a0412af35..2430a6b33 100644
--- a/src/com/android/launcher2/IconCache.java
+++ b/src/com/android/launcher2/IconCache.java
@@ -221,7 +221,6 @@ public class IconCache {
public HashMap<ComponentName,Bitmap> getAllIcons() {
synchronized (mCache) {
HashMap<ComponentName,Bitmap> set = new HashMap<ComponentName,Bitmap>();
- int i = 0;
for (ComponentName cn : mCache.keySet()) {
final CacheEntry e = mCache.get(cn);
set.put(cn, e.icon);