Merge "Remove an incorrect @UserIdInt from InputMethodUtils"

This commit is contained in:
TreeHugger Robot
2022-10-04 04:40:40 +00:00
committed by Android (Google) Code Review

View File

@@ -225,7 +225,7 @@ final class InputMethodUtils {
* @return {@code true} if the package name belongs to the UID.
*/
static boolean checkIfPackageBelongsToUid(AppOpsManager appOpsManager,
@UserIdInt int uid, String packageName) {
int uid, String packageName) {
try {
appOpsManager.checkPackage(uid, packageName);
return true;