summaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
authorChris Wren <cwren@android.com>2014-05-14 10:03:07 -0400
committerChris Wren <cwren@android.com>2014-05-14 10:03:07 -0400
commitefaf8a3dcde8158f50e5db36a7e81207b9978863 (patch)
tree65659ea5cfb72a29c9dd304bbc754078c2b689bc /src/com
parent43118986caea9b66ee96b8127e14c84609b3e02f (diff)
downloadandroid_packages_apps_Trebuchet-efaf8a3dcde8158f50e5db36a7e81207b9978863.tar.gz
android_packages_apps_Trebuchet-efaf8a3dcde8158f50e5db36a7e81207b9978863.tar.bz2
android_packages_apps_Trebuchet-efaf8a3dcde8158f50e5db36a7e81207b9978863.zip
remove work around for bug 14891460.
Bug: 14895464 Change-Id: I1e923e4fca194cde19195d156e33e99fc9fe86b6
Diffstat (limited to 'src/com')
-rw-r--r--src/com/android/launcher3/IconCache.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/com/android/launcher3/IconCache.java b/src/com/android/launcher3/IconCache.java
index 4d953ff10..be02d3583 100644
--- a/src/com/android/launcher3/IconCache.java
+++ b/src/com/android/launcher3/IconCache.java
@@ -253,13 +253,6 @@ public class IconCache {
mLauncherApps.resolveActivity(intent, user);
ComponentName component = intent.getComponent();
- try {
- launcherActInfo.getComponentName();
- } catch (NullPointerException e) {
- // launcherActInfo is invalid: b/14891460
- launcherActInfo = null;
- }
-
// null info means not installed, but if we have a component from the intent then
// we should still look in the cache for restored app icons.
if (launcherActInfo == null && component == null) {