Merge "Added explicit cast so it compiles on Eclipse." into nyc-mr1-dev

This commit is contained in:
TreeHugger Robot
2016-06-21 20:49:28 +00:00
committed by Android (Google) Code Review

View File

@@ -380,7 +380,8 @@ public class LauncherAppsService extends SystemService {
"To query by shortcut ID, package name must also be set");
}
return new ParceledListSlice<>(
// TODO(b/29399275): Eclipse compiler requires explicit List<ShortcutInfo> cast below.
return new ParceledListSlice<>((List<ShortcutInfo>)
mShortcutServiceInternal.getShortcuts(getCallingUserId(),
callingPackage, changedSince, packageName, shortcutIds,
componentName, flags, user.getIdentifier()));