diff options
| -rw-r--r-- | services/core/java/com/android/server/pm/InstantAppResolver.java | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/services/core/java/com/android/server/pm/InstantAppResolver.java b/services/core/java/com/android/server/pm/InstantAppResolver.java index 59f8a2d0da20..6f593b08e258 100644 --- a/services/core/java/com/android/server/pm/InstantAppResolver.java +++ b/services/core/java/com/android/server/pm/InstantAppResolver.java @@ -86,22 +86,18 @@ public abstract class InstantAppResolver { final List<InstantAppResolveInfo> instantAppResolveInfoList = connection.getInstantAppResolveInfoList(shaPrefix, token); - final AuxiliaryResolveInfo resolveInfo; if (instantAppResolveInfoList == null || instantAppResolveInfoList.size() == 0) { // No hash prefix match; there are no instant apps for this domain. if (DEBUG_EPHEMERAL) { Log.d(TAG, "No results returned"); } - resolveInfo = null; - } else { - resolveInfo = InstantAppResolver.filterInstantAppIntent(instantAppResolveInfoList, - intent, requestObj.resolvedType, requestObj.userId, - intent.getPackage(), digest, token); + return null; } - + final AuxiliaryResolveInfo resolveInfo = InstantAppResolver.filterInstantAppIntent( + instantAppResolveInfoList, intent, requestObj.resolvedType, requestObj.userId, + intent.getPackage(), digest, token); logMetrics(ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE, startTime, token, - resolveInfo != null ? RESOLUTION_SUCCESS : RESOLUTION_FAILURE); - + RESOLUTION_SUCCESS); return resolveInfo; } |