diff options
| author | 2024-05-23 08:59:58 +0000 | |
|---|---|---|
| committer | 2024-05-23 08:59:58 +0000 | |
| commit | 3aadebe49d12537e0cfa766c993d74764caba9a4 (patch) | |
| tree | 61d5f91c0b87468077a415ba0bd756dde692c544 | |
| parent | 688aa0542a70f86f7230fa68023a5ee595e10a09 (diff) | |
| parent | 6ff81b10dc5f6a255777737ce026f35727591862 (diff) | |
Merge changes from topic "cherrypicker-L02700030003994830:N86200030063687325" into main am: 6ff81b10dc
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/3098097
Change-Id: Iac9485c4b6ce363ca60fbdcd957d7d0389457e2c
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | cmds/hid/src/com/android/commands/hid/Event.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmds/hid/src/com/android/commands/hid/Event.java b/cmds/hid/src/com/android/commands/hid/Event.java index 09ed5281a83d..3b022796356b 100644 --- a/cmds/hid/src/com/android/commands/hid/Event.java +++ b/cmds/hid/src/com/android/commands/hid/Event.java @@ -121,9 +121,9 @@ public class Event { public String toString() { return "Event{id=" + mId - + ", command=" + String.valueOf(mCommand) - + ", name=" + String.valueOf(mName) - + ", uniq=" + String.valueOf(mUniq) + + ", command=" + mCommand + + ", name=" + mName + + ", uniq=" + mUniq + ", descriptor=" + Arrays.toString(mDescriptor) + ", vid=" + mVid + ", pid=" + mPid |