From c09326318334904f65d63c485c6fa1a7cb146bd8 Mon Sep 17 00:00:00 2001 From: Suchi Amalapurapu Date: Tue, 28 Jul 2009 10:28:23 -0700 Subject: [PATCH] Remove debug statement --- src/com/android/settings/ManageApplications.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/android/settings/ManageApplications.java b/src/com/android/settings/ManageApplications.java index 642a48ef929..7da4eae7c8e 100644 --- a/src/com/android/settings/ManageApplications.java +++ b/src/com/android/settings/ManageApplications.java @@ -1300,7 +1300,7 @@ public class ManageApplications extends ListActivity implements for (int i = 0; i < pkgs.length; i++) { AppInfo entry = mCache.getEntry(pkgs[i]); if (entry == null) { - Log.w(TAG, "Entry for package:"+ pkgs[i] +"doesn't exist in map"); + if (localLOGV) Log.w(TAG, "Entry for package:"+ pkgs[i] +"doesn't exist in map"); continue; } if (entry.setSize(sizes[i], formatted[i])) { @@ -1318,7 +1318,7 @@ public class ManageApplications extends ListActivity implements } AppInfo entry = mCache.getEntry(pkgName); if (entry == null) { - Log.w(TAG, "Entry for package:"+pkgName+"doesnt exist in map"); + if (localLOGV) Log.w(TAG, "Entry for package:"+pkgName+"doesnt exist in map"); return; } // Copy the index into the newly updated entry