am 4b8704c9: Merge "Don\'t try to get entries for uninstalled apps." into mnc-dev

* commit '4b8704c9e1024fa7aba66cce03cde78c7e10ba64':
  Don't try to get entries for uninstalled apps.
This commit is contained in:
Jason Monk
2015-06-15 15:54:25 +00:00
committed by Android Git Automerger

View File

@@ -281,7 +281,9 @@ public class ApplicationsState {
return null;
}
}
entry = getEntryLocked(info);
if (info != null) {
entry = getEntryLocked(info);
}
}
if (DEBUG_LOCKING) Log.v(TAG, "...getEntry releasing lock");
return entry;