Merge "Fix missing the implementation of Computer#dump() in ComputerLocked" into sc-dev

This commit is contained in:
Rhed Jao
2021-04-29 02:42:36 +00:00
committed by Android (Google) Code Review

View File

@@ -4883,6 +4883,11 @@ public class PackageManagerService extends IPackageManager.Stub
return super.filterAppAccess(packageName, callingUid, userId);
}
}
public void dump(int type, FileDescriptor fd, PrintWriter pw, DumpState dumpState) {
synchronized (mLock) {
super.dump(type, fd, pw, dumpState);
}
}
}