am c0932631: Remove debug statement

Merge commit 'c09326318334904f65d63c485c6fa1a7cb146bd8'

* commit 'c09326318334904f65d63c485c6fa1a7cb146bd8':
  Remove debug statement
This commit is contained in:
Suchi Amalapurapu
2009-07-28 11:29:09 -07:00
committed by Android Git Automerger

View File

@@ -1300,7 +1300,7 @@ public class ManageApplications extends ListActivity implements
for (int i = 0; i < pkgs.length; i++) { for (int i = 0; i < pkgs.length; i++) {
AppInfo entry = mCache.getEntry(pkgs[i]); AppInfo entry = mCache.getEntry(pkgs[i]);
if (entry == null) { 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; continue;
} }
if (entry.setSize(sizes[i], formatted[i])) { if (entry.setSize(sizes[i], formatted[i])) {
@@ -1318,7 +1318,7 @@ public class ManageApplications extends ListActivity implements
} }
AppInfo entry = mCache.getEntry(pkgName); AppInfo entry = mCache.getEntry(pkgName);
if (entry == null) { 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; return;
} }
// Copy the index into the newly updated entry // Copy the index into the newly updated entry